Body of the BooleanStateConfiguration alarmsStateChanged event

MatterSpecification.v13.Cluster § 1.8.8.1

interface AlarmsStateChangedEvent {
    alarmsActive: TypeFromPartialBitSchema<{
        audible: BitFlag;
        visual: BitFlag;
    }>;
    alarmsSuppressed?: TypeFromPartialBitSchema<{
        audible: BitFlag;
        visual: BitFlag;
    }>;
}

Hierarchy (view full)

Properties

alarmsActive: TypeFromPartialBitSchema<{
    audible: BitFlag;
    visual: BitFlag;
}>

This field shall indicate the state of active alarm modes, as indicated by the AlarmsActive attribute, at the time the event was generated.

Type declaration

MatterSpecification.v13.Cluster § 1.8.8.1.1

alarmsSuppressed?: TypeFromPartialBitSchema<{
    audible: BitFlag;
    visual: BitFlag;
}>

This field shall indicate the state of suppressed alarm modes, as indicated by the AlarmsSuppressed attribute, at the time the event was generated.

Type declaration

MatterSpecification.v13.Cluster § 1.8.8.1.2