Skip to content

Commit

Permalink
set modes
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Sep 25, 2023
1 parent f84c4f5 commit f724f64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/BalboaGL/ESPBalboaGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ void BalboaGL::setup() {
this->spa = new balboaGL(hw_serial_, RTS_PIN_DEF, PIN_5_PIN_DEF);
this->current_temperature = NAN;
this->target_temperature = NAN;
this->fan_mode = climate::CLIMATE_FAN_AUTO;
this->fan_mode = climate::CLIMATE_FAN_OFF;
this->swing_mode = climate::CLIMATE_SWING_OFF;
this->action = climate::CLIMATE_ACTION_HEATING;
this->action = climate::CLIMATE_ACTION_AUTO;


// ESP_LOGCONFIG(
Expand Down
4 changes: 2 additions & 2 deletions components/BalboaGL/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
AUTO_LOAD = ["climate"]

CONF_SUPPORTS = "supports"
DEFAULT_CLIMATE_MODES = ["HEAT"]
DEFAULT_FAN_MODES = ["AUTO"]
DEFAULT_CLIMATE_MODES = ["HEAT","AUTO"]
DEFAULT_FAN_MODES = ["OFF"]
DEFAULT_SWING_MODES = ["OFF"]

BalboaGL = cg.global_ns.class_(
Expand Down

0 comments on commit f724f64

Please sign in to comment.