state property
int
get
state
The current fan state, where:
- 0x00 idle/off
- 0x01 running/running-low
- 0x02 running high
Implementation
int get state => data[9] & 0x1F;
The current fan state, where:
int get state => data[9] & 0x1F;