Input to the FanControl step command

MatterSpecification.v13.Cluster § 4.4.7.1

interface StepRequest {
    direction: FanControl.StepDirection;
    lowestOff?: boolean;
    wrap?: boolean;
}

Hierarchy (view full)

Properties

This field shall indicate whether the fan speed increases or decreases to the next step value.

MatterSpecification.v13.Cluster § 4.4.7.1.1

lowestOff?: boolean

This field shall indicate that the fan being off (speed value 0) is included as a step value.

MatterSpecification.v13.Cluster § 4.4.7.1.3

wrap?: boolean

This field shall indicate if the fan speed wraps between highest and lowest step value.

MatterSpecification.v13.Cluster § 4.4.7.1.2