Skip to content

Commit

Permalink
update temp
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Nov 4, 2023
1 parent 3da62bb commit d0c3a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/BalboaGL/climate/BalboaGLClimate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ void BalboaGLClimate::update() {
// ESP_LOGV(TAG, "BalboaGLClimate Update called.");

static String lastRaw = "0";
if(status.rawData != lastRaw || status.temp ! = this->current_temperature) {
if((status.rawData != lastRaw) || (status.temp != this->current_temperature)) {
ESP_LOGD(TAG, "Raw: %s", status.rawData.c_str());
ESP_LOGD(TAG, "Current Temp: %f", status.temp);
ESP_LOGD(TAG, "Target Temp: %f", status.targetTemp);
Expand Down

0 comments on commit d0c3a08

Please sign in to comment.