coAlarm top-level constant
NotificationType
const coAlarm
Implementation
const coAlarm = NotificationType(
/* 0x02 */ NOTIFICATION_TYPE_CO_ALARM, 'CO Alarm', //
[
NotificationValue(0, 'State idle' //
// Notification value for the state variable going to idle. (V5)
),
NotificationValue(1, 'Carbon monoxide detected (location provided)' //
// Node Location Report
// (Node Naming and Location Command Class)
),
NotificationValue(2, 'Carbon monoxide detected'),
NotificationValue(3, 'Carbon monoxide test' //
// 0x01 = Test OK
// 0x02 = Test Failed
// The Carbon monoxide Test event may be issued by an alarm device to advertise that the test mode of the device has been activated.
// The activation may be manual or via signaling.
// A receiving application SHOULD NOT activate any alarms in response to this event.
),
NotificationValue(4, 'Replacement required' //
// This event may be issued by an alarm device to advertise that its physical components are no more reliable, e.g.
// because of clogged filters.
),
NotificationValue(5, 'Replacement required, End-of-life'),
NotificationValue(6, 'Alarm silenced'),
NotificationValue(7, 'Maintenance required, planned periodic inspection'),
/* NotificationValue(254, Unknown event/state) */
],
);