diff --git a/esphome/components/climate_ir_lg/climate_ir_lg.cpp b/esphome/components/climate_ir_lg/climate_ir_lg.cpp index 7e37639a39..7fe0646230 100644 --- a/esphome/components/climate_ir_lg/climate_ir_lg.cpp +++ b/esphome/components/climate_ir_lg/climate_ir_lg.cpp @@ -43,11 +43,11 @@ void LgIrClimate::transmit_state() { // ESP_LOGD(TAG, "climate_lg_ir mode_before_ code: 0x%02X", modeBefore_); // Set command - if (send_swing_cmd_) { - send_swing_cmd_ = false; + if (this->send_swing_cmd_) { + this->send_swing_cmd_ = false; remote_state |= COMMAND_SWING; } else { - bool climate_is_off = (mode_before_ == climate::CLIMATE_MODE_OFF); + bool climate_is_off = (this->mode_before_ == climate::CLIMATE_MODE_OFF); switch (this->mode) { case climate::CLIMATE_MODE_COOL: remote_state |= climate_is_off ? COMMAND_ON_COOL : COMMAND_COOL; @@ -71,7 +71,7 @@ void LgIrClimate::transmit_state() { } } - mode_before_ = this->mode; + this->mode_before_ = this->mode; ESP_LOGD(TAG, "climate_lg_ir mode code: 0x%02X", this->mode); @@ -102,7 +102,7 @@ void LgIrClimate::transmit_state() { remote_state |= ((temp - 15) << TEMP_SHIFT); } - transmit_(remote_state); + this->transmit_(remote_state); this->publish_state(); } @@ -187,7 +187,7 @@ bool LgIrClimate::on_receive(remote_base::RemoteReceiveData data) { } void LgIrClimate::transmit_(uint32_t value) { - calc_checksum_(value); + this->calc_checksum_(value); ESP_LOGD(TAG, "Sending climate_lg_ir code: 0x%02" PRIX32, value); auto transmit = this->transmitter_->transmit(); diff --git a/esphome/components/climate_ir_lg/climate_ir_lg.h b/esphome/components/climate_ir_lg/climate_ir_lg.h index 7ee041b86f..00fc99ae73 100644 --- a/esphome/components/climate_ir_lg/climate_ir_lg.h +++ b/esphome/components/climate_ir_lg/climate_ir_lg.h @@ -21,7 +21,7 @@ class LgIrClimate : public climate_ir::ClimateIR { /// Override control to change settings of the climate device. void control(const climate::ClimateCall &call) override { - send_swing_cmd_ = call.get_swing_mode().has_value(); + this->send_swing_cmd_ = call.get_swing_mode().has_value(); // swing resets after unit powered off if (call.get_mode().has_value() && *call.get_mode() == climate::CLIMATE_MODE_OFF) this->swing_mode = climate::CLIMATE_SWING_OFF;