Input to the ColorControl enhancedMoveToHue command

MatterSpecification.v13.Cluster § 3.2.11.15

interface EnhancedMoveToHueRequest {
    direction: ColorControl.Direction;
    enhancedHue: number;
    optionsMask: TypeFromPartialBitSchema<{
        executeIfOff: BitFlag;
    }>;
    optionsOverride: TypeFromPartialBitSchema<{
        executeIfOff: BitFlag;
    }>;
    transitionTime: number;
}

Hierarchy (view full)

Properties

This field is identical to the Direction field of the MoveToHue command of the Color Control cluster (see sub-clause Use of the OptionsMask and OptionsOverride fields).

MatterSpecification.v13.Cluster § 3.2.11.15.2

enhancedHue: number

The EnhancedHue field specifies the target extended hue for the lamp.

MatterSpecification.v13.Cluster § 3.2.11.15.1

optionsMask: TypeFromPartialBitSchema<{
    executeIfOff: BitFlag;
}>
optionsOverride: TypeFromPartialBitSchema<{
    executeIfOff: BitFlag;
}>
transitionTime: number

This field is identical to the TransitionTime field of the MoveToHue command of the Color Control cluster (see sub-clause Use of the OptionsMask and OptionsOverride fields).

MatterSpecification.v13.Cluster § 3.2.11.15.3