gasAlarm top-level constant

NotificationType const gasAlarm

Implementation

const gasAlarm = NotificationType(
  /* 0x12 */ NOTIFICATION_TYPE_GAS_ALARM, 'Gas alarm', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Combustible gas detected (location provided)' //
        // Node Location Report (Node Naming and Location Command Class)
        ),
    NotificationValue(2, 'Combustible gas detected'),
    NotificationValue(3, 'Toxic gas detected (location provided)' //
        // Node Location Report
        // (Node Naming and Location Command Class)
        ),
    NotificationValue(4, 'Toxic gas detected'),
    NotificationValue(5, 'Gas alarm test'),
    NotificationValue(6, 'Replacement required'),
    /* NotificationValue(254, Unknown event/state) */
  ],
);