PowerInWattsComponent: {
    attributes: {
        selectedWattIndex: Attribute<number, any>;
        supportedWatts: FixedAttribute<number[], any>;
    };
} = ...

A MicrowaveOvenControlCluster supports these elements if it supports feature PowerInWatts.

Type declaration

  • Readonlyattributes: {
        selectedWattIndex: Attribute<number, any>;
        supportedWatts: FixedAttribute<number[], any>;
    }
    • ReadonlyselectedWattIndex: Attribute<number, any>

      Indicates the index into the list of SupportedWatts of the currently selected power setting.

      The index shall be a valid index into the SupportedWatts list.

      MatterSpecification.v13.Cluster § 8.13.5.8

    • ReadonlysupportedWatts: FixedAttribute<number[], any>

      Indicates the list of power levels (in W) supported by the server.

      MatterSpecification.v13.Cluster § 8.13.5.7