TlvOnWithTimedOffRequest: ObjectSchema<{
    offWaitTime: FieldType<number>;
    onOffControl: FieldType<TypeFromPartialBitSchema<{
        acceptOnlyWhenOn: BitFlag;
    }>>;
    onTime: FieldType<number>;
}> = ...

Input to the OnOff onWithTimedOff command

Type declaration

  • offWaitTime: FieldType<number>

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

    MatterSpecification.v13.Cluster § 1.5.7.6.3

  • onOffControl: FieldType<TypeFromPartialBitSchema<{
        acceptOnlyWhenOn: BitFlag;
    }>>

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

    MatterSpecification.v13.Cluster § 1.5.7.6.1

  • onTime: FieldType<number>

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

    MatterSpecification.v13.Cluster § 1.5.7.6.2

MatterSpecification.v13.Cluster § 1.5.7.6