Input to the ColorControl moveToHue command

MatterSpecification.v13.Cluster § 3.2.11.4

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

Hierarchy (view full)

Properties

The Direction field shall be one of the non-reserved values in Values of the Direction Field.

MatterSpecification.v13.Cluster § 3.2.11.4.2

hue: number

The Hue field specifies the hue to be moved to.

MatterSpecification.v13.Cluster § 3.2.11.4.1

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

The TransitionTime field specifies, in 1/10ths of a second, the time that shall be taken to move to the new hue.

MatterSpecification.v13.Cluster § 3.2.11.4.3