mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
80d03a631e
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
207 lines
6.6 KiB
C++
207 lines
6.6 KiB
C++
#include "climate_ir_lg.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace climate_ir_lg {
|
|
|
|
static const char *const TAG = "climate.climate_ir_lg";
|
|
|
|
const uint32_t COMMAND_ON = 0x00000;
|
|
const uint32_t COMMAND_ON_AI = 0x03000;
|
|
const uint32_t COMMAND_COOL = 0x08000;
|
|
const uint32_t COMMAND_HEAT = 0x0C000;
|
|
const uint32_t COMMAND_OFF = 0xC0000;
|
|
const uint32_t COMMAND_SWING = 0x10000;
|
|
// On, 25C, Mode: Auto, Fan: Auto, Zone Follow: Off, Sensor Temp: Ignore.
|
|
const uint32_t COMMAND_AUTO = 0x0B000;
|
|
const uint32_t COMMAND_DRY_FAN = 0x09000;
|
|
|
|
const uint32_t COMMAND_MASK = 0xFF000;
|
|
|
|
const uint32_t FAN_MASK = 0xF0;
|
|
const uint32_t FAN_AUTO = 0x50;
|
|
const uint32_t FAN_MIN = 0x00;
|
|
const uint32_t FAN_MED = 0x20;
|
|
const uint32_t FAN_MAX = 0x40;
|
|
|
|
// Temperature
|
|
const uint8_t TEMP_RANGE = TEMP_MAX - TEMP_MIN + 1;
|
|
const uint32_t TEMP_MASK = 0XF00;
|
|
const uint32_t TEMP_SHIFT = 8;
|
|
|
|
const uint16_t BITS = 28;
|
|
|
|
void LgIrClimate::transmit_state() {
|
|
uint32_t remote_state = 0x8800000;
|
|
|
|
// ESP_LOGD(TAG, "climate_lg_ir mode_before_ code: 0x%02X", modeBefore_);
|
|
if (send_swing_cmd_) {
|
|
send_swing_cmd_ = false;
|
|
remote_state |= COMMAND_SWING;
|
|
} else {
|
|
if (mode_before_ == climate::CLIMATE_MODE_OFF && this->mode == climate::CLIMATE_MODE_HEAT_COOL) {
|
|
remote_state |= COMMAND_ON_AI;
|
|
} else if (mode_before_ == climate::CLIMATE_MODE_OFF && this->mode != climate::CLIMATE_MODE_OFF) {
|
|
remote_state |= COMMAND_ON;
|
|
this->mode = climate::CLIMATE_MODE_COOL;
|
|
} else {
|
|
switch (this->mode) {
|
|
case climate::CLIMATE_MODE_COOL:
|
|
remote_state |= COMMAND_COOL;
|
|
break;
|
|
case climate::CLIMATE_MODE_HEAT:
|
|
remote_state |= COMMAND_HEAT;
|
|
break;
|
|
case climate::CLIMATE_MODE_HEAT_COOL:
|
|
remote_state |= COMMAND_AUTO;
|
|
break;
|
|
case climate::CLIMATE_MODE_DRY:
|
|
remote_state |= COMMAND_DRY_FAN;
|
|
break;
|
|
case climate::CLIMATE_MODE_OFF:
|
|
default:
|
|
remote_state |= COMMAND_OFF;
|
|
break;
|
|
}
|
|
}
|
|
mode_before_ = this->mode;
|
|
|
|
ESP_LOGD(TAG, "climate_lg_ir mode code: 0x%02X", this->mode);
|
|
|
|
if (this->mode == climate::CLIMATE_MODE_OFF) {
|
|
remote_state |= FAN_AUTO;
|
|
} else if (this->mode == climate::CLIMATE_MODE_COOL || this->mode == climate::CLIMATE_MODE_DRY ||
|
|
this->mode == climate::CLIMATE_MODE_HEAT) {
|
|
switch (this->fan_mode.value()) {
|
|
case climate::CLIMATE_FAN_HIGH:
|
|
remote_state |= FAN_MAX;
|
|
break;
|
|
case climate::CLIMATE_FAN_MEDIUM:
|
|
remote_state |= FAN_MED;
|
|
break;
|
|
case climate::CLIMATE_FAN_LOW:
|
|
remote_state |= FAN_MIN;
|
|
break;
|
|
case climate::CLIMATE_FAN_AUTO:
|
|
default:
|
|
remote_state |= FAN_AUTO;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (this->mode == climate::CLIMATE_MODE_HEAT_COOL) {
|
|
this->fan_mode = climate::CLIMATE_FAN_AUTO;
|
|
// remote_state |= FAN_MODE_AUTO_DRY;
|
|
}
|
|
if (this->mode == climate::CLIMATE_MODE_COOL || this->mode == climate::CLIMATE_MODE_HEAT) {
|
|
auto temp = (uint8_t) roundf(clamp<float>(this->target_temperature, TEMP_MIN, TEMP_MAX));
|
|
remote_state |= ((temp - 15) << TEMP_SHIFT);
|
|
}
|
|
}
|
|
transmit_(remote_state);
|
|
this->publish_state();
|
|
}
|
|
|
|
bool LgIrClimate::on_receive(remote_base::RemoteReceiveData data) {
|
|
uint8_t nbits = 0;
|
|
uint32_t remote_state = 0;
|
|
|
|
if (!data.expect_item(this->header_high_, this->header_low_))
|
|
return false;
|
|
|
|
for (nbits = 0; nbits < 32; nbits++) {
|
|
if (data.expect_item(this->bit_high_, this->bit_one_low_)) {
|
|
remote_state = (remote_state << 1) | 1;
|
|
} else if (data.expect_item(this->bit_high_, this->bit_zero_low_)) {
|
|
remote_state = (remote_state << 1) | 0;
|
|
} else if (nbits == BITS) {
|
|
break;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Decoded 0x%02X", remote_state);
|
|
if ((remote_state & 0xFF00000) != 0x8800000)
|
|
return false;
|
|
|
|
if ((remote_state & COMMAND_MASK) == COMMAND_ON) {
|
|
this->mode = climate::CLIMATE_MODE_COOL;
|
|
} else if ((remote_state & COMMAND_MASK) == COMMAND_ON_AI) {
|
|
this->mode = climate::CLIMATE_MODE_HEAT_COOL;
|
|
}
|
|
|
|
if ((remote_state & COMMAND_MASK) == COMMAND_OFF) {
|
|
this->mode = climate::CLIMATE_MODE_OFF;
|
|
} else if ((remote_state & COMMAND_MASK) == COMMAND_SWING) {
|
|
this->swing_mode =
|
|
this->swing_mode == climate::CLIMATE_SWING_OFF ? climate::CLIMATE_SWING_VERTICAL : climate::CLIMATE_SWING_OFF;
|
|
} else {
|
|
if ((remote_state & COMMAND_MASK) == COMMAND_AUTO) {
|
|
this->mode = climate::CLIMATE_MODE_HEAT_COOL;
|
|
} else if ((remote_state & COMMAND_MASK) == COMMAND_DRY_FAN) {
|
|
this->mode = climate::CLIMATE_MODE_DRY;
|
|
} else if ((remote_state & COMMAND_MASK) == COMMAND_HEAT) {
|
|
this->mode = climate::CLIMATE_MODE_HEAT;
|
|
} else {
|
|
this->mode = climate::CLIMATE_MODE_COOL;
|
|
}
|
|
|
|
// Temperature
|
|
if (this->mode == climate::CLIMATE_MODE_COOL || this->mode == climate::CLIMATE_MODE_HEAT)
|
|
this->target_temperature = ((remote_state & TEMP_MASK) >> TEMP_SHIFT) + 15;
|
|
|
|
// Fan Speed
|
|
if (this->mode == climate::CLIMATE_MODE_HEAT_COOL) {
|
|
this->fan_mode = climate::CLIMATE_FAN_AUTO;
|
|
} else if (this->mode == climate::CLIMATE_MODE_COOL || this->mode == climate::CLIMATE_MODE_HEAT ||
|
|
this->mode == climate::CLIMATE_MODE_DRY) {
|
|
if ((remote_state & FAN_MASK) == FAN_AUTO) {
|
|
this->fan_mode = climate::CLIMATE_FAN_AUTO;
|
|
} else if ((remote_state & FAN_MASK) == FAN_MIN) {
|
|
this->fan_mode = climate::CLIMATE_FAN_LOW;
|
|
} else if ((remote_state & FAN_MASK) == FAN_MED) {
|
|
this->fan_mode = climate::CLIMATE_FAN_MEDIUM;
|
|
} else if ((remote_state & FAN_MASK) == FAN_MAX) {
|
|
this->fan_mode = climate::CLIMATE_FAN_HIGH;
|
|
}
|
|
}
|
|
}
|
|
this->publish_state();
|
|
|
|
return true;
|
|
}
|
|
void LgIrClimate::transmit_(uint32_t value) {
|
|
calc_checksum_(value);
|
|
ESP_LOGD(TAG, "Sending climate_lg_ir code: 0x%02X", value);
|
|
|
|
auto transmit = this->transmitter_->transmit();
|
|
auto *data = transmit.get_data();
|
|
|
|
data->set_carrier_frequency(38000);
|
|
data->reserve(2 + BITS * 2u);
|
|
|
|
data->item(this->header_high_, this->header_low_);
|
|
|
|
for (uint32_t mask = 1UL << (BITS - 1); mask != 0; mask >>= 1) {
|
|
if (value & mask) {
|
|
data->item(this->bit_high_, this->bit_one_low_);
|
|
} else {
|
|
data->item(this->bit_high_, this->bit_zero_low_);
|
|
}
|
|
}
|
|
data->mark(this->bit_high_);
|
|
transmit.perform();
|
|
}
|
|
void LgIrClimate::calc_checksum_(uint32_t &value) {
|
|
uint32_t mask = 0xF;
|
|
uint32_t sum = 0;
|
|
for (uint8_t i = 1; i < 8; i++) {
|
|
sum += (value & (mask << (i * 4))) >> (i * 4);
|
|
}
|
|
|
|
value |= (sum & mask);
|
|
}
|
|
|
|
} // namespace climate_ir_lg
|
|
} // namespace esphome
|