// Copyright 2017, 2019 David Conran /// @file /// @brief Support for LG protocols. /// @see https://github.com/arendst/Tasmota/blob/54c2eb283a02e4287640a4595e506bc6eadbd7f2/sonoff/xdrv_05_irremote.ino#L327-438 // Supports: // Brand: LG, Model: 6711A20083V remote (LG) // Brand: LG, Model: AKB74395308 remote (LG2) // Brand: LG, Model: S4-W12JA3AA A/C (LG2) // Brand: LG, Model: AKB75215403 remote (LG2) // Brand: General Electric, Model: AG1BH09AW101 Split A/C // Brand: General Electric, Model: 6711AR2853M A/C Remote #ifndef IR_LG_H_ #define IR_LG_H_ #define __STDC_LIMIT_MACROS #include #ifndef UNIT_TEST #include #endif #include "IRremoteESP8266.h" #include "IRsend.h" #include "IRutils.h" #ifdef UNIT_TEST #include "IRsend_test.h" #endif const uint8_t kLgAcChecksumOffset = 0; // Nr. of bits const uint8_t kLgAcChecksumSize = kNibbleSize; // Nr. of bits const uint8_t kLgAcFanOffset = 4; // Nr. of bits const uint8_t kLgAcFanSize = 3; // Nr. of bits const uint8_t kLgAcFanLow = 0; // 0b000 const uint8_t kLgAcFanMedium = 2; // 0b010 const uint8_t kLgAcFanHigh = 4; // 0b100 const uint8_t kLgAcFanAuto = 5; // 0b101 const uint8_t kLgAcTempOffset = 8; // Nr. of bits const uint8_t kLgAcTempSize = 4; // Nr. of bits const uint8_t kLgAcTempAdjust = 15; const uint8_t kLgAcMinTemp = 16; // Celsius const uint8_t kLgAcMaxTemp = 30; // Celsius const uint8_t kLgAcModeOffset = 12; // Nr. of bits const uint8_t kLgAcModeSize = 3; // Nr. of bits const uint8_t kLgAcCool = 0; // 0b000 const uint8_t kLgAcDry = 1; // 0b001 const uint8_t kLgAcFan = 2; // 0b010 const uint8_t kLgAcAuto = 3; // 0b011 const uint8_t kLgAcHeat = 4; // 0b100 const uint8_t kLgAcPowerOffset = 18; // Nr. of bits const uint8_t kLgAcPowerSize = 2; // Nr. of bits const uint8_t kLgAcPowerOff = 3; // 0b11 const uint8_t kLgAcPowerOn = 0; // 0b00 const uint8_t kLgAcSignatureOffset = 20; // Nr. of bits const uint8_t kLgAcSignatureSize = 8; // Nr. of bits const uint8_t kLgAcSignature = 0x88; const uint32_t kLgAcOffCommand = 0x88C0051; // Classes /// Class for handling detailed LG A/C messages. class IRLgAc { public: explicit IRLgAc(const uint16_t pin, const bool inverted = false, const bool use_modulation = true); void stateReset(void); static uint8_t calcChecksum(const uint32_t state); static bool validChecksum(const uint32_t state); bool isValidLgAc(void); #if SEND_LG void send(const uint16_t repeat = kLgDefaultRepeat); /// Run the calibration to calculate uSec timing offsets for this platform. /// @return The uSec timing offset needed per modulation of the IR Led. /// @note This will produce a 65ms IR signal pulse at 38kHz. /// Only ever needs to be run once per object instantiation, if at all. int8_t calibrate(void) { return _irsend.calibrate(); } #endif // SEND_LG void begin(void); void on(void); void off(void); void setPower(const bool on); bool getPower(void); void setTemp(const uint8_t degrees); uint8_t getTemp(void); void setFan(const uint8_t speed); uint8_t getFan(void); void setMode(const uint8_t mode); uint8_t getMode(void); uint32_t getRaw(void); void setRaw(const uint32_t new_code); uint8_t convertMode(const stdAc::opmode_t mode); static stdAc::opmode_t toCommonMode(const uint8_t mode); static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed); static uint8_t convertFan(const stdAc::fanspeed_t speed); stdAc::state_t toCommon(void); String toString(void); void setModel(const lg_ac_remote_model_t model); lg_ac_remote_model_t getModel(void); #ifndef UNIT_TEST private: IRsend _irsend; ///< Instance of the IR send class #else // UNIT_TEST /// @cond IGNORE IRsendTest _irsend; ///< Instance of the testing IR send class /// @endcond #endif // UNIT_TEST uint32_t remote_state; ///< The state of the IR remote in IR code form. uint8_t _temp; decode_type_t _protocol; void checksum(void); void _setTemp(const uint8_t value); }; #endif // IR_LG_H_