This represents a single transition in a Thermostat schedule

MatterSpecification.v13.Cluster § 4.3.8.24

interface WeeklyScheduleTransition {
    coolSetpoint: null | number;
    heatSetpoint: null | number;
    transitionTime: number;
}

Hierarchy (view full)

Properties

coolSetpoint: null | number

This field shall represent the cool setpoint to be applied at this associated transition start time.

MatterSpecification.v13.Cluster § 4.3.8.24.3

heatSetpoint: null | number

This field shall represent the heat setpoint to be applied at this associated transition start time.

MatterSpecification.v13.Cluster § 4.3.8.24.2

transitionTime: number

This field shall represent the start time of the schedule transition during the associated day. The time will be represented by a 16 bits unsigned integer to designate the minutes since midnight. For example, 6am will be represented by 360 minutes since midnight and 11:30pm will be represented by 1410 minutes since midnight.

MatterSpecification.v13.Cluster § 4.3.8.24.1