Input to the LevelControl moveToLevel command

MatterSpecification.v13.Cluster § 1.6.7.1

interface MoveToLevelRequest {
    level: number;
    optionsMask: TypeFromPartialBitSchema<{
        coupleColorTempToLevel: BitFlag;
        executeIfOff: BitFlag;
    }>;
    optionsOverride: TypeFromPartialBitSchema<{
        coupleColorTempToLevel: BitFlag;
        executeIfOff: BitFlag;
    }>;
    transitionTime: null | number;
}

Hierarchy (view full)

Properties

level: number = ...
optionsMask: TypeFromPartialBitSchema<{
    coupleColorTempToLevel: BitFlag;
    executeIfOff: BitFlag;
}> = ...

Type declaration

  • coupleColorTempToLevel: BitFlag

    Dependency on Color Control cluster

    This bit indicates if this cluster has a dependency with the Color Control cluster.

    MatterSpecification.v13.Cluster § 1.6.5.1.2

  • executeIfOff: BitFlag

    Dependency on On/Off cluster

    This bit indicates if this cluster has a dependency with the On/Off cluster.

    MatterSpecification.v13.Cluster § 1.6.5.1.1

optionsOverride: TypeFromPartialBitSchema<{
    coupleColorTempToLevel: BitFlag;
    executeIfOff: BitFlag;
}> = ...

Type declaration

  • coupleColorTempToLevel: BitFlag

    Dependency on Color Control cluster

    This bit indicates if this cluster has a dependency with the Color Control cluster.

    MatterSpecification.v13.Cluster § 1.6.5.1.2

  • executeIfOff: BitFlag

    Dependency on On/Off cluster

    This bit indicates if this cluster has a dependency with the On/Off cluster.

    MatterSpecification.v13.Cluster § 1.6.5.1.1

transitionTime: null | number = ...