Input to the TemperatureControl setTemperature command

MatterSpecification.v13.Cluster § 8.2.6.1

interface SetTemperatureRequest {
    targetTemperature?: number;
    targetTemperatureLevel?: number;
}

Hierarchy (view full)

Properties

targetTemperature?: number

This field shall specify the desired temperature setpoint that the server is to be set to.

The TargetTemperature shall be from MinTemperature to MaxTemperature inclusive. If the Step attribute is supported, TargetTemperature shall be such that (TargetTemperature - MinTemperature) % Step == 0.

MatterSpecification.v13.Cluster § 8.2.6.1.1

targetTemperatureLevel?: number

This field shall specify the index of the list item in the SupportedTemperatureLevels list that represents the desired temperature level setting of the server. The value of this field shall be between 0 and the length of the SupportedTemperatureLevels list -1.

MatterSpecification.v13.Cluster § 8.2.6.1.2