irrigation top-level constant

NotificationType const irrigation

Implementation

const irrigation = NotificationType(
  /* 0x11 */ NOTIFICATION_TYPE_IRRIGATION, 'Irrigation', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Schedule started' //
        // Event Parameter 1 = <Schedule ID>
        ),
    NotificationValue(2, 'Schedule finished' //
        // Event Parameter 1 = <Schedule ID>
        ),
    NotificationValue(3, 'Valve table run started' //
        // Event Parameter 1 = <Valve table ID>
        ),
    NotificationValue(4, 'Valve table run finished' //
        // Event Parameter 1 = <Valve table ID>
        ),
    NotificationValue(5, 'Device is not configured'),
    /* NotificationValue(254, Unknown event/state) */
  ],
);