weatherAlarm top-level constant

NotificationType const weatherAlarm

Implementation

const weatherAlarm = NotificationType(
  /* 0x10 */ NOTIFICATION_TYPE_WEATHER_ALARM, 'Weather Alarm', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Rain alarm'),
    NotificationValue(2, 'Moisture alarm'),
    NotificationValue(3, 'Freeze alarm' //
        // The Freeze alarm state is used to indicate that the outside temperature is negative and there is an icing risk
        ),
    /* NotificationValue(254, Unknown event/state) */
  ],
);