TlvAlarmsStateChangedEvent: ObjectSchema<{
    alarmsActive: FieldType<TypeFromPartialBitSchema<{
        audible: BitFlag;
        visual: BitFlag;
    }>>;
    alarmsSuppressed: OptionalFieldType<TypeFromPartialBitSchema<{
        audible: BitFlag;
        visual: BitFlag;
    }>>;
}> = ...

Body of the BooleanStateConfiguration alarmsStateChanged event

Type declaration

  • alarmsActive: FieldType<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.

    MatterSpecification.v13.Cluster § 1.8.8.1.1

  • alarmsSuppressed: OptionalFieldType<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.

    MatterSpecification.v13.Cluster § 1.8.8.1.2

MatterSpecification.v13.Cluster § 1.8.8.1