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>
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
#include "lg_protocol.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace remote_base {
|
|
|
|
static const char *const TAG = "remote.lg";
|
|
|
|
static const uint32_t HEADER_HIGH_US = 8000;
|
|
static const uint32_t HEADER_LOW_US = 4000;
|
|
static const uint32_t BIT_HIGH_US = 600;
|
|
static const uint32_t BIT_ONE_LOW_US = 1600;
|
|
static const uint32_t BIT_ZERO_LOW_US = 550;
|
|
|
|
void LGProtocol::encode(RemoteTransmitData *dst, const LGData &data) {
|
|
dst->set_carrier_frequency(38000);
|
|
dst->reserve(2 + data.nbits * 2u);
|
|
|
|
dst->item(HEADER_HIGH_US, HEADER_LOW_US);
|
|
|
|
for (uint32_t mask = 1UL << (data.nbits - 1); mask != 0; mask >>= 1) {
|
|
if (data.data & mask) {
|
|
dst->item(BIT_HIGH_US, BIT_ONE_LOW_US);
|
|
} else {
|
|
dst->item(BIT_HIGH_US, BIT_ZERO_LOW_US);
|
|
}
|
|
}
|
|
|
|
dst->mark(BIT_HIGH_US);
|
|
}
|
|
optional<LGData> LGProtocol::decode(RemoteReceiveData src) {
|
|
LGData out{
|
|
.data = 0,
|
|
.nbits = 0,
|
|
};
|
|
if (!src.expect_item(HEADER_HIGH_US, HEADER_LOW_US))
|
|
return {};
|
|
|
|
for (out.nbits = 0; out.nbits < 32; out.nbits++) {
|
|
if (src.expect_item(BIT_HIGH_US, BIT_ONE_LOW_US)) {
|
|
out.data = (out.data << 1) | 1;
|
|
} else if (src.expect_item(BIT_HIGH_US, BIT_ZERO_LOW_US)) {
|
|
out.data = (out.data << 1) | 0;
|
|
} else if (out.nbits == 28) {
|
|
return out;
|
|
} else {
|
|
return {};
|
|
}
|
|
}
|
|
|
|
return out;
|
|
}
|
|
void LGProtocol::dump(const LGData &data) {
|
|
ESP_LOGD(TAG, "Received LG: data=0x%08X, nbits=%d", data.data, data.nbits);
|
|
}
|
|
|
|
} // namespace remote_base
|
|
} // namespace esphome
|