Input to the OnOff onWithTimedOff command

MatterSpecification.v13.Cluster § 1.5.7.6

interface OnWithTimedOffRequest {
    offWaitTime: number;
    onOffControl: TypeFromPartialBitSchema<{
        acceptOnlyWhenOn: BitFlag;
    }>;
    onTime: number;
}

Hierarchy (view full)

Properties

offWaitTime: number

This field is used to adjust the value of the OffWaitTime attribute.

MatterSpecification.v13.Cluster § 1.5.7.6.3

onOffControl: TypeFromPartialBitSchema<{
    acceptOnlyWhenOn: BitFlag;
}>

This field contains information on how the server is to be operated.

Type declaration

  • acceptOnlyWhenOn: BitFlag

    Indicates a command is only accepted when in On state.

MatterSpecification.v13.Cluster § 1.5.7.6.1

onTime: number

This field is used to adjust the value of the OnTime attribute.

MatterSpecification.v13.Cluster § 1.5.7.6.2