matc/clusters/codec/dishwasher_alarm.rs
1//! Matter TLV encoders and decoders for Dishwasher Alarm Cluster
2//! Cluster ID: 0x005D
3//!
4//! This file is automatically generated from DishwasherAlarm.xml
5
6
7
8// Bitmap definitions
9
10/// Alarm bitmap type
11pub type Alarm = u8;
12
13/// Constants for Alarm
14pub mod alarm {
15 /// Water inflow is abnormal
16 pub const INFLOW_ERROR: u8 = 0x01;
17 /// Water draining is abnormal
18 pub const DRAIN_ERROR: u8 = 0x02;
19 /// Door or door lock is abnormal
20 pub const DOOR_ERROR: u8 = 0x04;
21 /// Unable to reach normal temperature
22 pub const TEMP_TOO_LOW: u8 = 0x08;
23 /// Temperature is too high
24 pub const TEMP_TOO_HIGH: u8 = 0x10;
25 /// Water level is abnormal
26 pub const WATER_LEVEL_ERROR: u8 = 0x20;
27}
28