Input to the ColorControl moveColor command

MatterSpecification.v13.Cluster § 3.2.11.12

interface MoveColorRequest {
    optionsMask: TypeFromPartialBitSchema<{
        executeIfOff: BitFlag;
    }>;
    optionsOverride: TypeFromPartialBitSchema<{
        executeIfOff: BitFlag;
    }>;
    rateX: number;
    rateY: number;
}

Hierarchy (view full)

Properties

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

The RateX field specifies the rate of movement in steps per second. A step is a change in the device’s CurrentX attribute of one unit.

MatterSpecification.v13.Cluster § 3.2.11.12.1

rateY: number

The RateY field specifies the rate of movement in steps per second. A step is a change in the device’s CurrentY attribute of one unit.

MatterSpecification.v13.Cluster § 3.2.11.12.2