co2Alarm top-level constant

NotificationType const co2Alarm

Implementation

const co2Alarm = NotificationType(
  /* 0x03 */ NOTIFICATION_TYPE_CO2_ALARM, 'CO2 Alarm', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Carbon dioxide detected (location provided)' //
        // Node Location Report
        // (Node Naming and Location Command Class)
        ),
    NotificationValue(2, 'Carbon dioxide detected'),
    NotificationValue(3, 'Carbon dioxide test' //
        // 0x01 = Test OK
        // 0x02 = Test Failed
        ),
    NotificationValue(4, 'Replacement required'),
    NotificationValue(5, 'Replacement required, End-of-life'),
    NotificationValue(6, 'Alarm silenced'),
    NotificationValue(7, 'Maintenance required, planned periodic inspection'),
    /* NotificationValue(254, Unknown event/state) */
  ],
);