IRremoteESP8266
ir_LG.h
Go to the documentation of this file.
1 // Copyright 2017-2021 David Conran
2 
7 
8 // Supports:
9 // Brand: LG, Model: 6711A20083V remote (LG - LG6711A20083V)
10 // Brand: LG, Model: TS-H122ERM1 remote (LG - LG6711A20083V)
11 // Brand: LG, Model: AKB74395308 remote (LG2)
12 // Brand: LG, Model: S4-W12JA3AA A/C (LG2)
13 // Brand: LG, Model: AKB75215403 remote (LG2)
14 // Brand: LG, Model: AKB74955603 remote (LG2 - AKB74955603)
15 // Brand: LG, Model: A4UW30GFA2 A/C (LG2 - AKB74955603 & AKB73757604)
16 // Brand: LG, Model: AMNW09GSJA0 A/C (LG2 - AKB74955603)
17 // Brand: LG, Model: AMNW24GTPA1 A/C (LG2 - AKB73757604)
18 // Brand: LG, Model: AKB73757604 remote (LG2 - AKB73757604)
19 // Brand: LG, Model: AKB73315611 remote (LG2 - AKB74955603)
20 // Brand: LG, Model: MS05SQ NW0 A/C (LG2 - AKB74955603)
21 // Brand: General Electric, Model: AG1BH09AW101 A/C (LG - GE6711AR2853M)
22 // Brand: General Electric, Model: 6711AR2853M Remote (LG - GE6711AR2853M)
23 
24 #ifndef IR_LG_H_
25 #define IR_LG_H_
26 
27 #define __STDC_LIMIT_MACROS
28 #include <stdint.h>
29 #ifndef UNIT_TEST
30 #include <Arduino.h>
31 #endif
32 #include "IRremoteESP8266.h"
33 #include "IRsend.h"
34 #include "IRutils.h"
35 #ifdef UNIT_TEST
36 #include "IRsend_test.h"
37 #endif
38 
40 union LGProtocol{
41  uint32_t raw;
42  struct {
43  uint32_t Sum :4;
44  uint32_t Fan :4;
45  uint32_t Temp :4;
46  uint32_t Mode :3;
47  uint32_t :3;
48  uint32_t Power:2;
49  uint32_t Sign :8;
50  };
51 };
52 
53 const uint8_t kLgAcFanLowest = 0; // 0b0000
54 const uint8_t kLgAcFanLow = 1; // 0b0001
55 const uint8_t kLgAcFanMedium = 2; // 0b0010
56 const uint8_t kLgAcFanMax = 4; // 0b0100
57 const uint8_t kLgAcFanAuto = 5; // 0b0101
58 const uint8_t kLgAcFanLowAlt = 9; // 0b1001
59 const uint8_t kLgAcFanHigh = 10; // 0b1010
60 // Nr. of slots in the look-up table
61 const uint8_t kLgAcFanEntries = kLgAcFanHigh + 1;
62 const uint8_t kLgAcTempAdjust = 15;
63 const uint8_t kLgAcMinTemp = 16; // Celsius
64 const uint8_t kLgAcMaxTemp = 30; // Celsius
65 const uint8_t kLgAcCool = 0; // 0b000
66 const uint8_t kLgAcDry = 1; // 0b001
67 const uint8_t kLgAcFan = 2; // 0b010
68 const uint8_t kLgAcAuto = 3; // 0b011
69 const uint8_t kLgAcHeat = 4; // 0b100
70 const uint8_t kLgAcPowerOff = 3; // 0b11
71 const uint8_t kLgAcPowerOn = 0; // 0b00
72 const uint8_t kLgAcSignature = 0x88;
73 
74 const uint32_t kLgAcOffCommand = 0x88C0051;
75 const uint32_t kLgAcLightToggle = 0x88C00A6;
76 
77 const uint32_t kLgAcSwingVToggle = 0x8810001;
78 const uint32_t kLgAcSwingSignature = 0x8813;
79 const uint32_t kLgAcSwingVLowest = 0x8813048;
80 const uint32_t kLgAcSwingVLow = 0x8813059;
81 const uint32_t kLgAcSwingVMiddle = 0x881306A;
82 const uint32_t kLgAcSwingVUpperMiddle = 0x881307B;
83 const uint32_t kLgAcSwingVHigh = 0x881308C;
84 const uint32_t kLgAcSwingVHighest = 0x881309D;
85 const uint32_t kLgAcSwingVSwing = 0x8813149;
87 const uint32_t kLgAcSwingVOff = 0x881315A;
88 const uint8_t kLgAcSwingVLowest_Short = 0x04;
89 const uint8_t kLgAcSwingVLow_Short = 0x05;
90 const uint8_t kLgAcSwingVMiddle_Short = 0x06;
91 const uint8_t kLgAcSwingVUpperMiddle_Short = 0x07;
92 const uint8_t kLgAcSwingVHigh_Short = 0x08;
93 const uint8_t kLgAcSwingVHighest_Short = 0x09;
94 const uint8_t kLgAcSwingVSwing_Short = 0x14;
96 const uint8_t kLgAcSwingVOff_Short = 0x15;
97 
98 // AKB73757604 Constants
99 // SwingH
100 const uint32_t kLgAcSwingHAuto = 0x881316B;
101 const uint32_t kLgAcSwingHOff = 0x881317C;
102 // SwingV
103 const uint8_t kLgAcVaneSwingVHighest = 1;
104 const uint8_t kLgAcVaneSwingVHigh = 2;
105 const uint8_t kLgAcVaneSwingVUpperMiddle = 3;
106 const uint8_t kLgAcVaneSwingVMiddle = 4;
107 const uint8_t kLgAcVaneSwingVLow = 5;
108 const uint8_t kLgAcVaneSwingVLowest = 6;
109 const uint8_t kLgAcVaneSwingVSize = 8;
110 const uint8_t kLgAcSwingVMaxVanes = 4;
111 
112 // Classes
114 class IRLgAc {
115  public:
116  explicit IRLgAc(const uint16_t pin, const bool inverted = false,
117  const bool use_modulation = true);
118  void stateReset(void);
119  static uint8_t calcChecksum(const uint32_t state);
120  static bool validChecksum(const uint32_t state);
121  bool isValidLgAc(void) const;
122 #if SEND_LG
123  void send(const uint16_t repeat = kLgDefaultRepeat);
128  int8_t calibrate(void) { return _irsend.calibrate(); }
129 #endif // SEND_LG
130  void begin(void);
131  void on(void);
132  void off(void);
133  void setPower(const bool on);
134  bool getPower(void) const;
135  bool isOffCommand(void) const;
136  void setTemp(const uint8_t degrees);
137  uint8_t getTemp(void) const;
138  void setFan(const uint8_t speed);
139  uint8_t getFan(void) const;
140  void setMode(const uint8_t mode);
141  uint8_t getMode(void) const;
142  void setLight(const bool on);
143  bool getLight(void) const;
144  bool isLightToggle(void) const;
145  bool isSwing(void) const;
146  void setSwingH(const bool on);
147  bool getSwingH(void) const;
148  bool isSwingV(void) const;
149  bool isSwingVToggle(void) const;
150  bool isVaneSwingV(void) const;
151  void setSwingV(const uint32_t position);
152  uint32_t getSwingV(void) const;
153  void setVaneSwingV(const uint8_t vane, const uint8_t position);
154  uint8_t getVaneSwingV(const uint8_t vane) const;
155  static uint32_t calcVaneSwingV(const uint8_t vane, const uint8_t position);
156  static uint8_t getVaneCode(const uint32_t raw);
157  bool isSwingH(void) const;
158  void updateSwingPrev(void);
159  uint32_t getRaw(void);
160  void setRaw(const uint32_t new_code,
161  const decode_type_t protocol = decode_type_t::UNKNOWN);
162  static uint8_t convertMode(const stdAc::opmode_t mode);
163  static stdAc::opmode_t toCommonMode(const uint8_t mode);
164  static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed);
165  static stdAc::swingv_t toCommonSwingV(const uint32_t code);
166  static stdAc::swingv_t toCommonVaneSwingV(const uint8_t pos);
167  static uint8_t convertFan(const stdAc::fanspeed_t speed);
168  static uint32_t convertSwingV(const stdAc::swingv_t swingv);
169  static uint8_t convertVaneSwingV(const stdAc::swingv_t swingv);
170  stdAc::state_t toCommon(const stdAc::state_t *prev = NULL) const;
171  String toString(void) const;
172  void setModel(const lg_ac_remote_model_t model);
173  lg_ac_remote_model_t getModel(void) const;
174 #ifndef UNIT_TEST
175 
176  private:
178 #else // UNIT_TEST
179  IRsendTest _irsend;
181 #endif // UNIT_TEST
184  uint8_t _temp;
185  bool _light;
186  uint32_t _swingv;
187  uint32_t _swingv_prev;
190  bool _swingh;
194  void checksum(void);
195  void _setTemp(const uint8_t value);
196  bool _isAKB74955603(void) const;
197  bool _isAKB73757604(void) const;
198  bool _isLG6711A20083V(void) const;
199  bool _isNormal(void) const;
200 };
201 
202 #endif // IR_LG_H_
kLgAcFanMedium
const uint8_t kLgAcFanMedium
Definition: ir_LG.h:55
IRLgAc::_setTemp
void _setTemp(const uint8_t value)
Set the temperature.
Definition: ir_LG.cpp:457
IRLgAc::toCommonMode
static stdAc::opmode_t toCommonMode(const uint8_t mode)
Convert a native mode into its stdAc equivalent.
Definition: ir_LG.cpp:650
IRLgAc::getFan
uint8_t getFan(void) const
Get the current fan speed setting.
Definition: ir_LG.cpp:513
kLgAcSwingVLowest
const uint32_t kLgAcSwingVLowest
Definition: ir_LG.h:79
decode_type_t
decode_type_t
Enumerator for defining and numbering of supported IR protocol.
Definition: IRremoteESP8266.h:1011
IRLgAc::getSwingV
uint32_t getSwingV(void) const
Get the Vertical Swing position setting of the A/C.
Definition: ir_LG.cpp:600
IRLgAc::getRaw
uint32_t getRaw(void)
Get a copy of the internal state/code for this protocol.
Definition: ir_LG.cpp:351
IRLgAc::setVaneSwingV
void setVaneSwingV(const uint8_t vane, const uint8_t position)
Set the per Vane Vertical Swing mode of the A/C.
Definition: ir_LG.cpp:605
IRLgAc::_protocol
decode_type_t _protocol
Protocol version.
Definition: ir_LG.h:192
IRLgAc::getTemp
uint8_t getTemp(void) const
Get the current temperature setting.
Definition: ir_LG.cpp:470
IRLgAc::setSwingV
void setSwingV(const uint32_t position)
Set the Vertical Swing mode of the A/C.
Definition: ir_LG.cpp:578
UNKNOWN
@ UNKNOWN
Definition: IRremoteESP8266.h:1012
stdAc::swingv_t
swingv_t
Common A/C settings for Vertical Swing.
Definition: IRsend.h:74
IRLgAc::calibrate
int8_t calibrate(void)
Run the calibration to calculate uSec timing offsets for this platform.
Definition: ir_LG.h:128
kLgAcLightToggle
const uint32_t kLgAcLightToggle
Definition: ir_LG.h:75
kLgAcVaneSwingVMiddle
const uint8_t kLgAcVaneSwingVMiddle
0b100
Definition: ir_LG.h:106
kLgAcFanAuto
const uint8_t kLgAcFanAuto
Definition: ir_LG.h:57
kLgAcSwingVOff
const uint32_t kLgAcSwingVOff
Definition: ir_LG.h:87
stdAc::fanspeed_t
fanspeed_t
Common A/C settings for Fan Speeds.
Definition: IRsend.h:61
IRLgAc::isSwing
bool isSwing(void) const
Check if the stored code is a Swing message.
Definition: ir_LG.cpp:541
kLgAcPowerOff
const uint8_t kLgAcPowerOff
Definition: ir_LG.h:70
kLgAcFanLowest
const uint8_t kLgAcFanLowest
Definition: ir_LG.h:53
IRLgAc::setFan
void setFan(const uint8_t speed)
Set the speed of the fan.
Definition: ir_LG.cpp:476
kLgAcVaneSwingVHigh
const uint8_t kLgAcVaneSwingVHigh
0b010
Definition: ir_LG.h:104
IRLgAc::getPower
bool getPower(void) const
Get the value of the current power setting.
Definition: ir_LG.cpp:434
LGProtocol::Temp
uint32_t Temp
Definition: ir_LG.h:45
IRLgAc::isLightToggle
bool isLightToggle(void) const
Is the message a Light Toggle message?
Definition: ir_LG.cpp:452
kLgAcSwingVOff_Short
const uint8_t kLgAcSwingVOff_Short
Definition: ir_LG.h:96
kLgAcFanHigh
const uint8_t kLgAcFanHigh
Definition: ir_LG.h:59
kLgAcSwingVSwing_Short
const uint8_t kLgAcSwingVSwing_Short
Definition: ir_LG.h:94
IRsend.h
IRLgAc::updateSwingPrev
void updateSwingPrev(void)
Definition: ir_LG.cpp:592
IRLgAc::isSwingV
bool isSwingV(void) const
Check if the stored code is a non-vane SwingV message.
Definition: ir_LG.cpp:547
LGProtocol::Sign
uint32_t Sign
Definition: ir_LG.h:49
IRLgAc::toString
String toString(void) const
Convert the current internal state into a human readable string.
Definition: ir_LG.cpp:801
kLgAcSwingVLow
const uint32_t kLgAcSwingVLow
Definition: ir_LG.h:80
IRsend
Class for sending all basic IR protocols.
Definition: IRsend.h:237
kLgAcDry
const uint8_t kLgAcDry
Definition: ir_LG.h:66
kLgAcVaneSwingVHighest
const uint8_t kLgAcVaneSwingVHighest
0b001
Definition: ir_LG.h:103
IRLgAc::setTemp
void setTemp(const uint8_t degrees)
Set the temperature.
Definition: ir_LG.cpp:461
IRsend::calibrate
int8_t calibrate(uint16_t hz=38000U)
Calculate & set any offsets to account for execution times during sending.
Definition: IRsend.cpp:207
kLgAcFanEntries
const uint8_t kLgAcFanEntries
Definition: ir_LG.h:61
IRLgAc::_isNormal
bool _isNormal(void) const
Is the current message a normal (non-special) message?
Definition: ir_LG.cpp:298
IRLgAc::_
LGProtocol _
Definition: ir_LG.h:183
kLgAcSwingVSwing
const uint32_t kLgAcSwingVSwing
Definition: ir_LG.h:85
kLgAcFanLowAlt
const uint8_t kLgAcFanLowAlt
Definition: ir_LG.h:58
kLgAcOffCommand
const uint32_t kLgAcOffCommand
Definition: ir_LG.h:74
IRLgAc::getVaneSwingV
uint8_t getVaneSwingV(const uint8_t vane) const
Get the Vertical Swing position for the given vane of the A/C.
Definition: ir_LG.cpp:613
String
std::string String
Definition: IRremoteESP8266.h:1521
IRLgAc::_swingh
bool _swingh
Definition: ir_LG.h:190
IRLgAc::calcChecksum
static uint8_t calcChecksum(const uint32_t state)
Calculate the checksum for a given state.
Definition: ir_LG.cpp:398
kLgAcFanLow
const uint8_t kLgAcFanLow
Definition: ir_LG.h:54
IRLgAc::setModel
void setModel(const lg_ac_remote_model_t model)
Set the model of the A/C to emulate.
Definition: ir_LG.cpp:310
kLgDefaultRepeat
const uint16_t kLgDefaultRepeat
Definition: IRremoteESP8266.h:1298
kLgAcMaxTemp
const uint8_t kLgAcMaxTemp
Definition: ir_LG.h:64
IRLgAc::isOffCommand
bool isOffCommand(void) const
Is the message a Power Off message?
Definition: ir_LG.cpp:440
IRLgAc::_vaneswingv_prev
uint8_t _vaneswingv_prev[kLgAcSwingVMaxVanes]
Definition: ir_LG.h:189
kLgAcSwingVMiddle
const uint32_t kLgAcSwingVMiddle
Definition: ir_LG.h:81
IRLgAc::_swingv_prev
uint32_t _swingv_prev
Definition: ir_LG.h:187
kLgAcSwingVToggle
const uint32_t kLgAcSwingVToggle
Definition: ir_LG.h:77
IRLgAc::isSwingVToggle
bool isSwingVToggle(void) const
Check if the stored code is a SwingV Toggle message.
Definition: ir_LG.cpp:537
IRLgAc::IRLgAc
IRLgAc(const uint16_t pin, const bool inverted=false, const bool use_modulation=true)
Class constructor.
Definition: ir_LG.cpp:232
kLgAcSignature
const uint8_t kLgAcSignature
Definition: ir_LG.h:72
kLgAcSwingSignature
const uint32_t kLgAcSwingSignature
Definition: ir_LG.h:78
IRremoteESP8266.h
IRLgAc::convertFan
static uint8_t convertFan(const stdAc::fanspeed_t speed)
Convert a stdAc::fanspeed_t enum into it's native speed.
Definition: ir_LG.cpp:663
IRLgAc::getMode
uint8_t getMode(void) const
Get the operating mode setting of the A/C.
Definition: ir_LG.cpp:517
kLgAcSwingVHigh
const uint32_t kLgAcSwingVHigh
Definition: ir_LG.h:83
IRLgAc::_isAKB73757604
bool _isAKB73757604(void) const
Check if the stored code must belong to a AKB73757604 model.
Definition: ir_LG.cpp:342
IRLgAc::toCommonFanSpeed
static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed)
Convert a native fan speed into its stdAc equivalent.
Definition: ir_LG.cpp:677
kLgAcSwingVLow_Short
const uint8_t kLgAcSwingVLow_Short
Definition: ir_LG.h:89
IRLgAc::convertSwingV
static uint32_t convertSwingV(const stdAc::swingv_t swingv)
Convert a stdAc::swingv_t enum into it's native setting.
Definition: ir_LG.cpp:692
IRLgAc::_swingv
uint32_t _swingv
Definition: ir_LG.h:186
IRLgAc::setSwingH
void setSwingH(const bool on)
Set the Horizontal Swing mode of the A/C.
Definition: ir_LG.cpp:565
LGProtocol::raw
uint32_t raw
The state of the IR remote in IR code form.
Definition: ir_LG.h:41
kLgAcCool
const uint8_t kLgAcCool
Definition: ir_LG.h:65
kLgAcSwingVLowest_Short
const uint8_t kLgAcSwingVLowest_Short
Definition: ir_LG.h:88
kLgAcSwingVMaxVanes
const uint8_t kLgAcSwingVMaxVanes
Max Nr. of Vanes.
Definition: ir_LG.h:110
kLgAcSwingVAuto_Short
const uint8_t kLgAcSwingVAuto_Short
Definition: ir_LG.h:95
IRLgAc::getSwingH
bool getSwingH(void) const
Get the Horizontal Swing position setting of the A/C.
Definition: ir_LG.cpp:561
kLgAcHeat
const uint8_t kLgAcHeat
Definition: ir_LG.h:69
kLgAcSwingVHighest_Short
const uint8_t kLgAcSwingVHighest_Short
Definition: ir_LG.h:93
IRLgAc::calcVaneSwingV
static uint32_t calcVaneSwingV(const uint8_t vane, const uint8_t position)
Calculate the Vane specific Vertical Swing code for the A/C.
Definition: ir_LG.cpp:626
kLgAcFanMax
const uint8_t kLgAcFanMax
Definition: ir_LG.h:56
kLgAcSwingVUpperMiddle
const uint32_t kLgAcSwingVUpperMiddle
Definition: ir_LG.h:82
IRLgAc::_isLG6711A20083V
bool _isLG6711A20083V(void) const
Check if the stored code must belong to a LG6711A20083V model.
Definition: ir_LG.cpp:347
IRLgAc::begin
void begin(void)
Set up hardware to be able to send a message.
Definition: ir_LG.cpp:249
IRLgAc::_swingh_prev
bool _swingh_prev
Definition: ir_LG.h:191
IRLgAc::setRaw
void setRaw(const uint32_t new_code, const decode_type_t protocol=decode_type_t::UNKNOWN)
Set the internal state from a valid code for this protocol.
Definition: ir_LG.cpp:359
kLgAcVaneSwingVLow
const uint8_t kLgAcVaneSwingVLow
0b101
Definition: ir_LG.h:107
kLgAcVaneSwingVSize
const uint8_t kLgAcVaneSwingVSize
Definition: ir_LG.h:109
IRLgAc::toCommon
stdAc::state_t toCommon(const stdAc::state_t *prev=NULL) const
Convert the current internal state into its stdAc::state_t equivalent.
Definition: ir_LG.cpp:758
IRLgAc::_isAKB74955603
bool _isAKB74955603(void) const
Check if the stored code must belong to a AKB74955603 model.
Definition: ir_LG.cpp:334
IRLgAc
Class for handling detailed LG A/C messages.
Definition: ir_LG.h:114
kLgAcSwingVAuto
const uint32_t kLgAcSwingVAuto
Definition: ir_LG.h:86
IRutils.h
IRLgAc::getModel
lg_ac_remote_model_t getModel(void) const
Get the model of the A/C.
Definition: ir_LG.cpp:329
kLgAcSwingHAuto
const uint32_t kLgAcSwingHAuto
Definition: ir_LG.h:100
LGProtocol::Fan
uint32_t Fan
Definition: ir_LG.h:44
IRLgAc::_light
bool _light
Definition: ir_LG.h:185
IRLgAc::_vaneswingv
uint8_t _vaneswingv[kLgAcSwingVMaxVanes]
Definition: ir_LG.h:188
IRLgAc::convertVaneSwingV
static uint8_t convertVaneSwingV(const stdAc::swingv_t swingv)
Convert a stdAc::swingv_t enum into it's native setting.
Definition: ir_LG.cpp:745
lg_ac_remote_model_t
lg_ac_remote_model_t
LG A/C model numbers.
Definition: IRsend.h:217
kLgAcSwingHOff
const uint32_t kLgAcSwingHOff
Definition: ir_LG.h:101
kLgAcSwingVUpperMiddle_Short
const uint8_t kLgAcSwingVUpperMiddle_Short
Definition: ir_LG.h:91
IRLgAc::setMode
void setMode(const uint8_t mode)
Set the operating mode of the A/C.
Definition: ir_LG.cpp:521
IRLgAc::_model
lg_ac_remote_model_t _model
Model type.
Definition: ir_LG.h:193
IRLgAc::_temp
uint8_t _temp
Definition: ir_LG.h:184
IRLgAc::toCommonSwingV
static stdAc::swingv_t toCommonSwingV(const uint32_t code)
Convert a native Vertical Swing into its stdAc equivalent.
Definition: ir_LG.cpp:707
kLgAcAuto
const uint8_t kLgAcAuto
Definition: ir_LG.h:68
kLgAcPowerOn
const uint8_t kLgAcPowerOn
Definition: ir_LG.h:71
kLgAcVaneSwingVLowest
const uint8_t kLgAcVaneSwingVLowest
0b110
Definition: ir_LG.h:108
IRLgAc::isSwingH
bool isSwingH(void) const
Check if the stored code is a SwingH message.
Definition: ir_LG.cpp:555
IRLgAc::off
void off(void)
Change the power setting to Off.
Definition: ir_LG.cpp:420
IRLgAc::getVaneCode
static uint8_t getVaneCode(const uint32_t raw)
Get the vane code of a Vane Vertical Swing message.
Definition: ir_LG.cpp:620
IRLgAc::checksum
void checksum(void)
Calculate and set the checksum values for the internal state.
Definition: ir_LG.cpp:412
IRLgAc::setLight
void setLight(const bool on)
Change the light/led/display setting.
Definition: ir_LG.cpp:444
IRLgAc::stateReset
void stateReset(void)
Reset the internals of the object to a known good state.
Definition: ir_LG.cpp:237
kLgAcMinTemp
const uint8_t kLgAcMinTemp
Definition: ir_LG.h:63
kLgAcTempAdjust
const uint8_t kLgAcTempAdjust
Definition: ir_LG.h:62
LGProtocol::Mode
uint32_t Mode
Definition: ir_LG.h:46
LGProtocol::Sum
uint32_t Sum
Definition: ir_LG.h:43
kLgAcVaneSwingVUpperMiddle
const uint8_t kLgAcVaneSwingVUpperMiddle
0b011
Definition: ir_LG.h:105
IRLgAc::convertMode
static uint8_t convertMode(const stdAc::opmode_t mode)
Convert a stdAc::opmode_t enum into its native mode.
Definition: ir_LG.cpp:637
kLgAcSwingVMiddle_Short
const uint8_t kLgAcSwingVMiddle_Short
Definition: ir_LG.h:90
IRLgAc::setPower
void setPower(const bool on)
Change the power setting.
Definition: ir_LG.cpp:424
kLgAcSwingVHigh_Short
const uint8_t kLgAcSwingVHigh_Short
Definition: ir_LG.h:92
stdAc::state_t
Structure to hold a common A/C state.
Definition: IRsend.h:114
IRLgAc::send
void send(const uint16_t repeat=kLgDefaultRepeat)
Send the current internal state as an IR message.
Definition: ir_LG.cpp:254
IRLgAc::validChecksum
static bool validChecksum(const uint32_t state)
Verify the checksum is valid for a given state.
Definition: ir_LG.cpp:405
kLgAcFan
const uint8_t kLgAcFan
Definition: ir_LG.h:67
IRLgAc::on
void on(void)
Change the power setting to On.
Definition: ir_LG.cpp:417
LGProtocol::Power
uint32_t Power
Definition: ir_LG.h:48
IRLgAc::toCommonVaneSwingV
static stdAc::swingv_t toCommonVaneSwingV(const uint8_t pos)
Convert a native Vane specific Vertical Swing into its stdAc equivalent.
Definition: ir_LG.cpp:731
IRLgAc::getLight
bool getLight(void) const
Get the value of the current light setting.
Definition: ir_LG.cpp:448
IRLgAc::_irsend
IRsend _irsend
Instance of the IR send class.
Definition: ir_LG.h:177
LGProtocol
Native representation of a LG A/C message.
Definition: ir_LG.h:40
IRLgAc::isValidLgAc
bool isValidLgAc(void) const
Check if the internal state looks like a valid LG A/C message.
Definition: ir_LG.cpp:860
kLgAcSwingVHighest
const uint32_t kLgAcSwingVHighest
Definition: ir_LG.h:84
stdAc::opmode_t
opmode_t
Common A/C settings for A/C operating modes.
Definition: IRsend.h:49
IRLgAc::isVaneSwingV
bool isVaneSwingV(void) const
Check if the stored code is a vane specific SwingV message.
Definition: ir_LG.cpp:569