TlvWeeklyScheduleTransition: ObjectSchema<{
    coolSetpoint: FieldType<null | number>;
    heatSetpoint: FieldType<null | number>;
    transitionTime: FieldType<number>;
}> = ...

This represents a single transition in a Thermostat schedule

Type declaration

  • coolSetpoint: FieldType<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: FieldType<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: FieldType<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

MatterSpecification.v13.Cluster § 4.3.8.24