adjust ac value, fix weather in standby, add mutex safeguard
This commit is contained in:
parent
68dac6a4d0
commit
9016c70fac
3 changed files with 9 additions and 5 deletions
|
|
@ -7,7 +7,7 @@ RemoteVariable weather = RemoteVariable();
|
|||
RemoteVariable pm_switch = RemoteVariable();
|
||||
RemoteVariable pm_fan_speed = RemoteVariable();
|
||||
|
||||
const char *mode_names[] = {"off", "cool", "fan_only"};
|
||||
const char *mode_names[] = {"off", "cool", "fan_only", "dry"};
|
||||
const char *fan_speed_names[] = {"auto", "high", "medium", "low"};
|
||||
uint8_t row = 4;
|
||||
uint8_t column = 2;
|
||||
|
|
@ -19,9 +19,9 @@ const uint8_t light_array[4][2] = {
|
|||
|
||||
|
||||
AirConditioner ac = {
|
||||
.max_temperature = 30,
|
||||
.min_temperature = 15,
|
||||
.modes = 3,
|
||||
.max_temperature = 32,
|
||||
.min_temperature = 16,
|
||||
.modes = 4,
|
||||
.mode_names = mode_names,
|
||||
.fan_speeds = 4,
|
||||
.fan_speed_names = fan_speed_names,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue