appliance top-level constant

NotificationType const appliance

Implementation

const appliance = NotificationType(
  /* 0x0C */ NOTIFICATION_TYPE_APPLIANCE, 'Appliance', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Program started'),
    NotificationValue(2, 'Program in progress'),
    NotificationValue(3, 'Program completed'),
    NotificationValue(4, 'Replace main filter'),
    NotificationValue(5, 'Failure to set target temperature'),
    NotificationValue(6, 'Supplying water'),
    NotificationValue(7, 'Water supply failure'),
    NotificationValue(8, 'Boiling'),
    NotificationValue(9, 'Boiling failure'),
    NotificationValue(10, 'Washing'),
    NotificationValue(11, 'Washing failure'),
    NotificationValue(12, 'Rinsing'),
    NotificationValue(13, 'Rinsing failure'),
    NotificationValue(14, 'Draining'),
    NotificationValue(15, 'Draining failure'),
    NotificationValue(16, 'Spinning'),
    NotificationValue(17, 'Spinning failure'),
    NotificationValue(18, 'Drying'),
    NotificationValue(19, 'Drying failure'),
    NotificationValue(20, 'Fan failure'),
    NotificationValue(21, 'Compressor failure'),
    /* NotificationValue(254, Unknown event/state) */
  ],
);