TlvStepRequest: ObjectSchema<{
    direction: FieldType<FanControl.StepDirection>;
    lowestOff: OptionalFieldType<boolean>;
    wrap: OptionalFieldType<boolean>;
}> = ...

Input to the FanControl step command

Type declaration

  • direction: FieldType<FanControl.StepDirection>

    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: OptionalFieldType<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: OptionalFieldType<boolean>

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

    MatterSpecification.v13.Cluster § 4.4.7.1.2

MatterSpecification.v13.Cluster § 4.4.7.1