LightingComponent: {
    attributes: {
        minLevel: OptionalAttribute<number, any>;
        remainingTime: Attribute<number, any>;
        startUpCurrentLevel: WritableAttribute<null | number, any>;
    };
} = ...

A LevelControlCluster supports these elements if it supports feature Lighting.

Type declaration

  • Readonlyattributes: {
        minLevel: OptionalAttribute<number, any>;
        remainingTime: Attribute<number, any>;
        startUpCurrentLevel: WritableAttribute<null | number, any>;
    }
    • ReadonlyminLevel: OptionalAttribute<number, any>

      Indicates the minimum value of CurrentLevel that is capable of being assigned.

      MatterSpecification.v13.Cluster § 1.6.6.4

    • ReadonlyremainingTime: Attribute<number, any>

      Indicates the time remaining until the current command is complete - it is specified in 1/10ths of a second.

      MatterSpecification.v13.Cluster § 1.6.6.3

    • ReadonlystartUpCurrentLevel: WritableAttribute<null | number, any>

      Indicates the desired startup level for a device when it is supplied with power and this level shall be reflected in the CurrentLevel attribute. The values of the StartUpCurrentLevel attribute are listed below:

      This behavior does not apply to reboots associated with OTA. After an OTA restart, the CurrentLevel attribute shall return to its value prior to the restart.

      MatterSpecification.v13.Cluster § 1.6.6.15