siren top-level constant

NotificationType const siren

Implementation

const siren = NotificationType(
  /* 0x0E */ NOTIFICATION_TYPE_SIREN, 'Siren', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Siren active' //
        // This Event indicates that a siren or sound within a device is active.
        // This may be a Siren within a smoke sensor that goes active when smoke is detected.
        // Or a beeping within a power switch to indicate over-current detected.
        // The siren may switch Off automatically or based on user interaction.
        // This can be reported through Notification Type Siren and Event 0x00.
        ),
    /* NotificationValue(254, Unknown event/state) */
  ],
);