IRremoteESP8266
IRac.h
Go to the documentation of this file.
1 #ifndef IRAC_H_
2 #define IRAC_H_
3 
4 // Copyright 2019 David Conran
5 
6 #ifndef UNIT_TEST
7 #include <Arduino.h>
8 #endif
9 #include "IRremoteESP8266.h"
10 #include "ir_Airwell.h"
11 #include "ir_Amcor.h"
12 #include "ir_Argo.h"
13 #include "ir_Carrier.h"
14 #include "ir_Coolix.h"
15 #include "ir_Corona.h"
16 #include "ir_Daikin.h"
17 #include "ir_Delonghi.h"
18 #include "ir_Fujitsu.h"
19 #include "ir_Ecoclim.h"
20 #include "ir_Electra.h"
21 #include "ir_Goodweather.h"
22 #include "ir_Gree.h"
23 #include "ir_Haier.h"
24 #include "ir_Hitachi.h"
25 #include "ir_Kelvinator.h"
26 #include "ir_LG.h"
27 #include "ir_Midea.h"
28 #include "ir_Mitsubishi.h"
29 #include "ir_MitsubishiHeavy.h"
30 #include "ir_Neoclima.h"
31 #include "ir_Panasonic.h"
32 #include "ir_Samsung.h"
33 #include "ir_Sanyo.h"
34 #include "ir_Sharp.h"
35 #include "ir_Tcl.h"
36 #include "ir_Technibel.h"
37 #include "ir_Teco.h"
38 #include "ir_Toshiba.h"
39 #include "ir_Transcold.h"
40 #include "ir_Trotec.h"
41 #include "ir_Vestel.h"
42 #include "ir_Voltas.h"
43 #include "ir_Whirlpool.h"
44 
45 // Constants
46 const int8_t kGpioUnused = -1;
47 
48 // Class
50 class IRac {
51  public:
52  explicit IRac(const uint16_t pin, const bool inverted = false,
53  const bool use_modulation = true);
54  static bool isProtocolSupported(const decode_type_t protocol);
55  static void initState(stdAc::state_t *state,
56  const decode_type_t vendor, const int16_t model,
57  const bool power, const stdAc::opmode_t mode,
58  const float degrees, const bool celsius,
59  const stdAc::fanspeed_t fan,
60  const stdAc::swingv_t swingv,
61  const stdAc::swingh_t swingh,
62  const bool quiet, const bool turbo, const bool econo,
63  const bool light, const bool filter, const bool clean,
64  const bool beep, const int16_t sleep,
65  const int16_t clock);
66  static void initState(stdAc::state_t *state);
67  void markAsSent(void);
68  bool sendAc(void);
69  bool sendAc(const stdAc::state_t desired, const stdAc::state_t *prev = NULL);
70  bool sendAc(const decode_type_t vendor, const int16_t model,
71  const bool power, const stdAc::opmode_t mode, const float degrees,
72  const bool celsius, const stdAc::fanspeed_t fan,
73  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
74  const bool quiet, const bool turbo, const bool econo,
75  const bool light, const bool filter, const bool clean,
76  const bool beep, const int16_t sleep = -1,
77  const int16_t clock = -1);
78  static bool cmpStates(const stdAc::state_t a, const stdAc::state_t b);
79  static bool strToBool(const char *str, const bool def = false);
80  static int16_t strToModel(const char *str, const int16_t def = -1);
82  const char *str, const stdAc::opmode_t def = stdAc::opmode_t::kAuto);
84  const char *str,
87  const char *str, const stdAc::swingv_t def = stdAc::swingv_t::kOff);
89  const char *str, const stdAc::swingh_t def = stdAc::swingh_t::kOff);
90  static String boolToString(const bool value);
91  static String opmodeToString(const stdAc::opmode_t mode);
92  static String fanspeedToString(const stdAc::fanspeed_t speed);
93  static String swingvToString(const stdAc::swingv_t swingv);
94  static String swinghToString(const stdAc::swingh_t swingh);
97  bool hasStateChanged(void);
99 #ifndef UNIT_TEST
100 
101  private:
102 #endif
103  uint16_t _pin;
104  bool _inverted;
105  bool _modulation;
107 #if SEND_AIRWELL
108  void airwell(IRAirwellAc *ac,
109  const bool on, const stdAc::opmode_t mode, const float degrees,
110  const stdAc::fanspeed_t fan);
111 #endif // SEND_AIRWELL
112 #if SEND_AMCOR
113  void amcor(IRAmcorAc *ac,
114  const bool on, const stdAc::opmode_t mode, const float degrees,
115  const stdAc::fanspeed_t fan);
116 #endif // SEND_AMCOR
117 #if SEND_ARGO
118  void argo(IRArgoAC *ac,
119  const bool on, const stdAc::opmode_t mode, const float degrees,
120  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
121  const bool turbo, const int16_t sleep = -1);
122 #endif // SEND_ARGO
123 #if SEND_CARRIER_AC64
124 void carrier64(IRCarrierAc64 *ac,
125  const bool on, const stdAc::opmode_t mode,
126  const float degrees, const stdAc::fanspeed_t fan,
127  const stdAc::swingv_t swingv, const int16_t sleep = -1);
128 #endif // SEND_CARRIER_AC64
129 #if SEND_COOLIX
130  void coolix(IRCoolixAC *ac,
131  const bool on, const stdAc::opmode_t mode, const float degrees,
132  const stdAc::fanspeed_t fan,
133  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
134  const bool turbo, const bool light, const bool clean,
135  const int16_t sleep = -1);
136 #endif // SEND_COOLIX
137 #if SEND_CORONA_AC
138  void corona(IRCoronaAc *ac,
139  const bool on, const stdAc::opmode_t mode,
140  const float degrees, const stdAc::fanspeed_t fan,
141  const stdAc::swingv_t swingv, const bool econo);
142 #endif // SEND_CORONA_AC
143 #if SEND_DAIKIN
144  void daikin(IRDaikinESP *ac,
145  const bool on, const stdAc::opmode_t mode, const float degrees,
146  const stdAc::fanspeed_t fan,
147  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
148  const bool quiet, const bool turbo, const bool econo,
149  const bool clean);
150 #endif // SEND_DAIKIN
151 #if SEND_DAIKIN128
152  void daikin128(IRDaikin128 *ac,
153  const bool on, const stdAc::opmode_t mode,
154  const float degrees, const stdAc::fanspeed_t fan,
155  const stdAc::swingv_t swingv,
156  const bool quiet, const bool turbo, const bool light,
157  const bool econo, const int16_t sleep = -1,
158  const int16_t clock = -1);
159 #endif // SEND_DAIKIN128
160 #if SEND_DAIKIN152
161  void daikin152(IRDaikin152 *ac,
162  const bool on, const stdAc::opmode_t mode,
163  const float degrees, const stdAc::fanspeed_t fan,
164  const stdAc::swingv_t swingv,
165  const bool quiet, const bool turbo, const bool econo);
166 #endif // SEND_DAIKIN152
167 #if SEND_DAIKIN160
168  void daikin160(IRDaikin160 *ac,
169  const bool on, const stdAc::opmode_t mode,
170  const float degrees, const stdAc::fanspeed_t fan,
171  const stdAc::swingv_t swingv);
172 #endif // SEND_DAIKIN160
173 #if SEND_DAIKIN176
174  void daikin176(IRDaikin176 *ac,
175  const bool on, const stdAc::opmode_t mode,
176  const float degrees, const stdAc::fanspeed_t fan,
177  const stdAc::swingh_t swingh);
178 #endif // SEND_DAIKIN176
179 #if SEND_DAIKIN2
180  void daikin2(IRDaikin2 *ac,
181  const bool on, const stdAc::opmode_t mode,
182  const float degrees, const stdAc::fanspeed_t fan,
183  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
184  const bool quiet, const bool turbo, const bool light,
185  const bool econo, const bool filter, const bool clean,
186  const bool beep, const int16_t sleep = -1,
187  const int16_t clock = -1);
188 #endif // SEND_DAIKIN2
189 #if SEND_DAIKIN216
190 void daikin216(IRDaikin216 *ac,
191  const bool on, const stdAc::opmode_t mode,
192  const float degrees, const stdAc::fanspeed_t fan,
193  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
194  const bool quiet, const bool turbo);
195 #endif // SEND_DAIKIN216
196 #if SEND_DAIKIN64
197  void daikin64(IRDaikin64 *ac,
198  const bool on, const stdAc::opmode_t mode,
199  const float degrees, const stdAc::fanspeed_t fan,
200  const stdAc::swingv_t swingv,
201  const bool quiet, const bool turbo,
202  const int16_t sleep = -1, const int16_t clock = -1);
203 #endif // SEND_DAIKIN64
204 #if SEND_DELONGHI_AC
205  void delonghiac(IRDelonghiAc *ac,
206  const bool on, const stdAc::opmode_t mode, const bool celsius,
207  const float degrees, const stdAc::fanspeed_t fan,
208  const bool turbo, const int16_t sleep = -1);
209 #endif // SEND_DELONGHI_AC
210 #if SEND_ECOCLIM
211 void ecoclim(IREcoclimAc *ac,
212  const bool on, const stdAc::opmode_t mode,
213  const float degrees, const stdAc::fanspeed_t fan,
214  const int16_t sleep = -1, const int16_t clock = -1);
215 #endif // SEND_ECOCLIM
216 #if SEND_ELECTRA_AC
217 void electra(IRElectraAc *ac,
218  const bool on, const stdAc::opmode_t mode,
219  const float degrees, const stdAc::fanspeed_t fan,
220  const stdAc::swingv_t swingv,
221  const stdAc::swingh_t swingh, const bool turbo,
222  const bool lighttoggle, const bool clean);
223 #endif // SEND_ELECTRA_AC
224 #if SEND_FUJITSU_AC
225  void fujitsu(IRFujitsuAC *ac, const fujitsu_ac_remote_model_t model,
226  const bool on, const stdAc::opmode_t mode, const float degrees,
227  const stdAc::fanspeed_t fan,
228  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
229  const bool quiet, const bool turbo, const bool econo,
230  const bool filter, const bool clean, const int16_t sleep = -1);
231 #endif // SEND_FUJITSU_AC
232 #if SEND_GOODWEATHER
233  void goodweather(IRGoodweatherAc *ac,
234  const bool on, const stdAc::opmode_t mode,
235  const float degrees,
236  const stdAc::fanspeed_t fan,
237  const stdAc::swingv_t swingv,
238  const bool turbo, const bool light,
239  const int16_t sleep = -1);
240 #endif // SEND_GOODWEATHER
241 #if SEND_GREE
242  void gree(IRGreeAC *ac, const gree_ac_remote_model_t model,
243  const bool on, const stdAc::opmode_t mode, const bool celsius,
244  const float degrees, const stdAc::fanspeed_t fan,
245  const stdAc::swingv_t swingv, const bool turbo, const bool light,
246  const bool clean, const int16_t sleep = -1);
247 #endif // SEND_GREE
248 #if SEND_HAIER_AC
249  void haier(IRHaierAC *ac,
250  const bool on, const stdAc::opmode_t mode, const float degrees,
251  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
252  const bool filter, const int16_t sleep = -1,
253  const int16_t clock = -1);
254 #endif // SEND_HAIER_AC
255 #if SEND_HAIER_AC_YRW02
256  void haierYrwo2(IRHaierACYRW02 *ac,
257  const bool on, const stdAc::opmode_t mode,
258  const float degrees, const stdAc::fanspeed_t fan,
259  const stdAc::swingv_t swingv,
260  const bool turbo, const bool filter,
261  const int16_t sleep = -1);
262 #endif // SEND_HAIER_AC_YRW02
263 #if SEND_HITACHI_AC
264  void hitachi(IRHitachiAc *ac,
265  const bool on, const stdAc::opmode_t mode,
266  const float degrees, const stdAc::fanspeed_t fan,
267  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh);
268 #endif // SEND_HITACHI_AC
269 #if SEND_HITACHI_AC1
270  void hitachi1(IRHitachiAc1 *ac, const hitachi_ac1_remote_model_t model,
271  const bool on, const bool power_toggle,
272  const stdAc::opmode_t mode,
273  const float degrees, const stdAc::fanspeed_t fan,
274  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
275  const bool swing_toggle, const int16_t sleep = -1);
276 #endif // SEND_HITACHI_AC1
277 #if SEND_HITACHI_AC344
278  void hitachi344(IRHitachiAc344 *ac,
279  const bool on, const stdAc::opmode_t mode,
280  const float degrees, const stdAc::fanspeed_t fan,
281  const stdAc::swingv_t swingv,
282  const stdAc::swingh_t swingh);
283 #endif // SEND_HITACHI_AC344
284 #if SEND_HITACHI_AC424
285  void hitachi424(IRHitachiAc424 *ac,
286  const bool on, const stdAc::opmode_t mode,
287  const float degrees, const stdAc::fanspeed_t fan,
288  const stdAc::swingv_t swingv);
289 #endif // SEND_HITACHI_AC424
290 #if SEND_KELVINATOR
291  void kelvinator(IRKelvinatorAC *ac,
292  const bool on, const stdAc::opmode_t mode,
293  const float degrees, const stdAc::fanspeed_t fan,
294  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
295  const bool quiet, const bool turbo, const bool light,
296  const bool filter, const bool clean);
297 #endif // SEND_KELVINATOR
298 #if SEND_LG
299  void lg(IRLgAc *ac, const lg_ac_remote_model_t model,
300  const bool on, const stdAc::opmode_t mode,
301  const float degrees, const stdAc::fanspeed_t fan);
302 #endif // SEND_LG
303 #if SEND_MIDEA
304  void midea(IRMideaAC *ac,
305  const bool on, const stdAc::opmode_t mode, const bool celsius,
306  const float degrees, const stdAc::fanspeed_t fan,
307  const stdAc::swingv_t swingv, const bool turbo, const bool econo,
308  const bool light, const int16_t sleep = -1);
309 #endif // SEND_MIDEA
310 #if SEND_MITSUBISHI_AC
311  void mitsubishi(IRMitsubishiAC *ac,
312  const bool on, const stdAc::opmode_t mode,
313  const float degrees,
314  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
315  const stdAc::swingh_t swingh,
316  const bool quiet, const int16_t clock = -1);
317 #endif // SEND_MITSUBISHI_AC
318 #if SEND_MITSUBISHI112
320  const bool on, const stdAc::opmode_t mode,
321  const float degrees, const stdAc::fanspeed_t fan,
322  const stdAc::swingv_t swingv,
323  const stdAc::swingh_t swingh,
324  const bool quiet);
325 #endif // SEND_MITSUBISHI112
326 #if SEND_MITSUBISHI136
328  const bool on, const stdAc::opmode_t mode,
329  const float degrees, const stdAc::fanspeed_t fan,
330  const stdAc::swingv_t swingv, const bool quiet);
331 #endif // SEND_MITSUBISHI136
332 #if SEND_MITSUBISHIHEAVY
334  const bool on, const stdAc::opmode_t mode,
335  const float degrees, const stdAc::fanspeed_t fan,
336  const stdAc::swingv_t swingv,
337  const stdAc::swingh_t swingh,
338  const bool turbo, const bool econo, const bool clean);
340  const bool on, const stdAc::opmode_t mode,
341  const float degrees, const stdAc::fanspeed_t fan,
342  const stdAc::swingv_t swingv,
343  const stdAc::swingh_t swingh,
344  const bool quiet, const bool turbo, const bool econo,
345  const bool filter, const bool clean,
346  const int16_t sleep = -1);
347 #endif // SEND_MITSUBISHIHEAVY
348 #if SEND_NEOCLIMA
349  void neoclima(IRNeoclimaAc *ac, const bool on, const stdAc::opmode_t mode,
350  const bool celsius, const float degrees,
351  const stdAc::fanspeed_t fan,
352  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
353  const bool turbo, const bool econo, const bool light,
354  const bool filter, const int16_t sleep = -1);
355 #endif // SEND_NEOCLIMA
356 #if SEND_PANASONIC_AC
358  const bool on, const stdAc::opmode_t mode, const float degrees,
359  const stdAc::fanspeed_t fan,
360  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
361  const bool quiet, const bool turbo, const bool filter,
362  const int16_t clock = -1);
363 #endif // SEND_PANASONIC_AC
364 #if SEND_PANASONIC_AC32
365  void panasonic32(IRPanasonicAc32 *ac,
366  const bool on, const stdAc::opmode_t mode,
367  const float degrees, const stdAc::fanspeed_t fan,
368  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh);
369 #endif // SEND_PANASONIC_AC32
370 #if SEND_SAMSUNG_AC
371  void samsung(IRSamsungAc *ac,
372  const bool on, const stdAc::opmode_t mode, const float degrees,
373  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
374  const bool quiet, const bool turbo, const bool light,
375  const bool filter, const bool clean,
376  const bool beep, const bool prevpower = true,
377  const bool forcepower = true);
378 #endif // SEND_SAMSUNG_AC
379 #if SEND_SANYO_AC
380  void sanyo(IRSanyoAc *ac,
381  const bool on, const stdAc::opmode_t mode, const float degrees,
382  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
383  const bool beep, const int16_t sleep = -1);
384 #endif // SEND_SANYO_AC
385 #if SEND_SHARP_AC
386  void sharp(IRSharpAc *ac, const sharp_ac_remote_model_t model,
387  const bool on, const bool prev_power, const stdAc::opmode_t mode,
388  const float degrees, const stdAc::fanspeed_t fan,
389  const stdAc::swingv_t swingv, const bool turbo, const bool light,
390  const bool filter, const bool clean);
391 #endif // SEND_SHARP_AC
392 #if SEND_TCL112AC
393  void tcl112(IRTcl112Ac *ac,
394  const bool on, const stdAc::opmode_t mode, const float degrees,
395  const stdAc::fanspeed_t fan,
396  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
397  const bool turbo, const bool light, const bool econo,
398  const bool filter);
399 #endif // SEND_TCL112AC
400 #if SEND_TECHNIBEL_AC
401  void technibel(IRTechnibelAc *ac,
402  const bool on, const stdAc::opmode_t mode, const bool celsius,
403  const float degrees, const stdAc::fanspeed_t fan,
404  const stdAc::swingv_t swingv, const int16_t sleep = -1);
405 #endif // SEND_TECHNIBEL_AC
406 #if SEND_TECO
407  void teco(IRTecoAc *ac,
408  const bool on, const stdAc::opmode_t mode, const float degrees,
409  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
410  const bool light, const int16_t sleep = -1);
411 #endif // SEND_TECO
412 #if SEND_TOSHIBA_AC
413  void toshiba(IRToshibaAC *ac,
414  const bool on, const stdAc::opmode_t mode, const float degrees,
415  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
416  const bool turbo, const bool econo);
417 #endif // SEND_TOSHIBA_AC
418 #if SEND_TROTEC
419  void trotec(IRTrotecESP *ac,
420  const bool on, const stdAc::opmode_t mode, const float degrees,
421  const stdAc::fanspeed_t fan, const int16_t sleep = -1);
422 #endif // SEND_TROTEC
423 #if SEND_VESTEL_AC
424  void vestel(IRVestelAc *ac,
425  const bool on, const stdAc::opmode_t mode, const float degrees,
426  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
427  const bool turbo, const bool filter,
428  const int16_t sleep = -1, const int16_t clock = -1,
429  const bool sendNormal = true);
430 #endif // SEND_VESTEL_AC
431 #if SEND_VOLTAS
432  void voltas(IRVoltas *ac, const voltas_ac_remote_model_t model,
433  const bool on, const stdAc::opmode_t mode,
434  const float degrees, const stdAc::fanspeed_t fan,
435  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh,
436  const bool turbo, const bool econo, const bool light,
437  const int16_t sleep = -1);
438 #endif // SEND_VOLTAS
439 #if SEND_WHIRLPOOL_AC
441  const bool on, const stdAc::opmode_t mode, const float degrees,
442  const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv,
443  const bool turbo, const bool light,
444  const int16_t sleep = -1, const int16_t clock = -1);
445 #endif // SEND_WHIRLPOOL_AC
446 #if SEND_TRANSCOLD
447  void transcold(IRTranscoldAc *ac,
448  const bool on, const stdAc::opmode_t mode, const float degrees,
449  const stdAc::fanspeed_t fan,
450  const stdAc::swingv_t swingv, const stdAc::swingh_t swingh);
451 #endif // SEND_TRANSCOLD
452 static stdAc::state_t cleanState(const stdAc::state_t state);
453 static stdAc::state_t handleToggles(const stdAc::state_t desired,
454  const stdAc::state_t *prev = NULL);
455 }; // IRac class
456 
458 namespace IRAcUtils {
459  String resultAcToString(const decode_results * const results);
460  bool decodeToState(const decode_results *decode, stdAc::state_t *result,
461  const stdAc::state_t *prev = NULL);
462 } // namespace IRAcUtils
463 #endif // IRAC_H_
IRPanasonicAc
Class for handling detailed Panasonic A/C messages.
Definition: ir_Panasonic.h:100
IRac::airwell
void airwell(IRAirwellAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan)
Send an Airwell A/C message with the supplied settings.
Definition: IRac.cpp:306
ir_Kelvinator.h
Support for Kelvinator A/C protocols.
IRSamsungAc
Class for handling detailed Samsung A/C messages.
Definition: ir_Samsung.h:130
IRac::hitachi
void hitachi(IRHitachiAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh)
Send a Hitachi A/C message with the supplied settings.
Definition: IRac.cpp:1115
IRToshibaAC
Class for handling detailed Toshiba A/C messages.
Definition: ir_Toshiba.h:121
decode_type_t
decode_type_t
Enumerator for defining and numbering of supported IR protocol.
Definition: IRremoteESP8266.h:792
IRac::getStatePrev
stdAc::state_t getStatePrev(void)
Get the previous internal A/C climate state that should have already been sent to the device....
Definition: IRac.cpp:134
IRac::getState
stdAc::state_t getState(void)
Get the current internal A/C climate state.
Definition: IRac.cpp:129
IRMitsubishiHeavy152Ac
Class for handling detailed Mitsubishi Heavy 152-bit A/C messages.
Definition: ir_MitsubishiHeavy.h:184
IRac::strToSwingH
static stdAc::swingh_t strToSwingH(const char *str, const stdAc::swingh_t def=stdAc::swingh_t::kOff)
Convert the supplied str into the appropriate enum.
Definition: IRac.cpp:2898
IRac::sharp
void sharp(IRSharpAc *ac, const sharp_ac_remote_model_t model, const bool on, const bool prev_power, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool light, const bool filter, const bool clean)
Send a Sharp A/C message with the supplied settings.
Definition: IRac.cpp:1769
IRac::hitachi344
void hitachi344(IRHitachiAc344 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh)
Send a Hitachi 344-bit A/C message with the supplied settings.
Definition: IRac.cpp:1191
stdAc::opmode_t::kAuto
@ kAuto
ir_Electra.h
Support for Electra A/C protocols.
IRac::ecoclim
void ecoclim(IREcoclimAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const int16_t sleep=-1, const int16_t clock=-1)
Send an EcoClim A/C message with the supplied settings.
Definition: IRac.cpp:818
IRac::markAsSent
void markAsSent(void)
Update the previous state to the current one.
Definition: IRac.cpp:2761
stdAc::swingv_t
swingv_t
Common A/C settings for Vertical Swing.
Definition: IRsend.h:70
ir_Airwell.h
Airwell "Manchester code" based protocol. Some other Airwell products use the COOLIX protocol.
IRac::daikin2
void daikin2(IRDaikin2 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool light, const bool econo, const bool filter, const bool clean, const bool beep, const int16_t sleep=-1, const int16_t clock=-1)
Send a Daikin2 A/C message with the supplied settings.
Definition: IRac.cpp:695
ir_Trotec.h
Support for Trotec protocols.
IRac::sanyo
void sanyo(IRSanyoAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool beep, const int16_t sleep=-1)
Send a Toshiba A/C message with the supplied settings.
Definition: IRac.cpp:1725
IRDaikinESP
Class for handling detailed Daikin 280-bit A/C messages.
Definition: ir_Daikin.h:658
IRac::lg
void lg(IRLgAc *ac, const lg_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan)
Send a LG A/C message with the supplied settings.
Definition: IRac.cpp:1297
IRDelonghiAc
Class for handling detailed Delonghi A/C messages.
Definition: ir_Delonghi.h:73
IRCoronaAc
Class for handling detailed Corona A/C messages.
Definition: ir_Corona.h:107
IRac::kelvinator
void kelvinator(IRKelvinatorAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool light, const bool filter, const bool clean)
Send a Kelvinator A/C message with the supplied settings.
Definition: IRac.cpp:1263
IRDaikin2
Class for handling detailed Daikin 312-bit A/C messages.
Definition: ir_Daikin.h:740
ir_Neoclima.h
Support for Neoclima protocols. Analysis by crankyoldgit & AndreyShpilevoy.
IRDaikin128
Class for handling detailed Daikin 128-bit A/C messages.
Definition: ir_Daikin.h:1001
stdAc::fanspeed_t
fanspeed_t
Common A/C settings for Fan Speeds.
Definition: IRsend.h:58
ir_Sharp.h
Support for Sharp protocols.
IRac::fanspeedToString
static String fanspeedToString(const stdAc::fanspeed_t speed)
Convert the supplied fan speed enum into the appropriate String.
Definition: IRac.cpp:3048
whirlpool_ac_remote_model_t
whirlpool_ac_remote_model_t
Whirlpool A/C model numbers.
Definition: IRsend.h:169
ir_Carrier.h
Carrier A/C.
IRac::whirlpool
void whirlpool(IRWhirlpoolAc *ac, const whirlpool_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool light, const int16_t sleep=-1, const int16_t clock=-1)
Send a Whirlpool A/C message with the supplied settings.
Definition: IRac.cpp:2080
decode_results
Results returned from the decoder.
Definition: IRrecv.h:92
IRac::daikin64
void daikin64(IRDaikin64 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool quiet, const bool turbo, const int16_t sleep=-1, const int16_t clock=-1)
Send a Daikin 64-bit A/C message with the supplied settings.
Definition: IRac.cpp:764
IRac::voltas
void voltas(IRVoltas *ac, const voltas_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool econo, const bool light, const int16_t sleep=-1)
Send a Voltas A/C message with the supplied settings.
Definition: IRac.cpp:2039
IRac::tcl112
void tcl112(IRTcl112Ac *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool light, const bool econo, const bool filter)
Send a TCL 112-bit A/C message with the supplied settings.
Definition: IRac.cpp:1822
IRac::transcold
void transcold(IRTranscoldAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh)
Send a Transcold A/C message with the supplied settings.
Definition: IRac.cpp:2117
IRac::sendAc
bool sendAc(void)
Send an A/C message based soley on our internal state.
Definition: IRac.cpp:2767
IRac::cmpStates
static bool cmpStates(const stdAc::state_t a, const stdAc::state_t b)
Compare two AirCon states.
Definition: IRac.cpp:2778
ir_Midea.h
Support for Midea protocols. Midea added by crankyoldgit & bwze.
ir_Daikin.h
Support for Daikin A/C protocols.
gree_ac_remote_model_t
gree_ac_remote_model_t
Gree A/C model numbers.
Definition: IRsend.h:133
IRDaikin64
Class for handling detailed Daikin 64-bit A/C messages.
Definition: ir_Daikin.h:1131
ir_Coolix.h
Support for Coolix A/C protocols.
IRac::vestel
void vestel(IRVestelAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool filter, const int16_t sleep=-1, const int16_t clock=-1, const bool sendNormal=true)
Send a Vestel A/C message with the supplied settings.
Definition: IRac.cpp:1997
IRHitachiAc424
Class for handling detailed Hitachi 53-byte/424-bit A/C messages.
Definition: ir_Hitachi.h:371
IRac::daikin
void daikin(IRDaikinESP *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool econo, const bool clean)
Send a Daikin A/C message with the supplied settings.
Definition: IRac.cpp:531
IRac::IRac
IRac(const uint16_t pin, const bool inverted=false, const bool use_modulation=true)
Class constructor.
Definition: IRac.cpp:55
IRDaikin216
Class for handling detailed Daikin 216-bit A/C messages.
Definition: ir_Daikin.h:836
IRVoltas
Class for handling detailed Voltas A/C messages.
Definition: ir_Voltas.h:90
hitachi_ac1_remote_model_t
hitachi_ac1_remote_model_t
HITACHI_AC1 A/C model numbers.
Definition: IRsend.h:139
IRac::samsung
void samsung(IRSamsungAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool quiet, const bool turbo, const bool light, const bool filter, const bool clean, const bool beep, const bool prevpower=true, const bool forcepower=true)
Send a Samsung A/C message with the supplied settings.
Definition: IRac.cpp:1684
IRac::daikin128
void daikin128(IRDaikin128 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool quiet, const bool turbo, const bool light, const bool econo, const int16_t sleep=-1, const int16_t clock=-1)
Send a Daikin 128-bit A/C message with the supplied settings.
Definition: IRac.cpp:571
IRHitachiAc
Class for handling detailed Hitachi 224-bit A/C messages.
Definition: ir_Hitachi.h:246
kGpioUnused
const int8_t kGpioUnused
A placeholder for not using an actual GPIO.
Definition: IRac.h:46
IRAcUtils
Common functions for use with all A/Cs supported by the IRac class.
Definition: IRac.cpp:3117
IRSanyoAc
Class for handling detailed Sanyo A/C messages.
Definition: ir_Sanyo.h:106
IRac::haier
void haier(IRHaierAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool filter, const int16_t sleep=-1, const int16_t clock=-1)
Send a Haier A/C message with the supplied settings.
Definition: IRac.cpp:1046
IRWhirlpoolAc
Class for handling detailed Whirlpool A/C messages.
Definition: ir_Whirlpool.h:132
IRHitachiAc344
Class for handling detailed Hitachi 344-bit A/C messages.
Definition: ir_Hitachi.h:459
IRac::boolToString
static String boolToString(const bool value)
Convert the supplied boolean into the appropriate String.
Definition: IRac.cpp:3019
IRac::next
stdAc::state_t next
The state we want the device to be in after we send.
Definition: IRac.h:98
String
std::string String
Definition: IRremoteESP8266.h:1208
IRMitsubishiAC
Class for handling detailed Mitsubishi 144-bit A/C messages.
Definition: ir_Mitsubishi.h:242
IRac::trotec
void trotec(IRTrotecESP *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const int16_t sleep=-1)
Send a Trotec A/C message with the supplied settings.
Definition: IRac.cpp:1960
IRac::strToModel
static int16_t strToModel(const char *str, const int16_t def=-1)
Convert the supplied str into the appropriate enum.
Definition: IRac.cpp:2938
IRAmcorAc
Class for handling detailed Amcor A/C messages.
Definition: ir_Amcor.h:90
IRMitsubishi112
Class for handling detailed Mitsubishi 122-bit A/C messages.
Definition: ir_Mitsubishi.h:362
ir_Ecoclim.h
EcoClim A/C protocol.
IRTcl112Ac
Class for handling detailed TCL A/C messages.
Definition: ir_Tcl.h:89
IRac::daikin176
void daikin176(IRDaikin176 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingh_t swingh)
Send a Daikin 176-bit A/C message with the supplied settings.
Definition: IRac.cpp:663
IRElectraAc
Class for handling detailed Electra A/C messages.
Definition: ir_Electra.h:98
ir_Tcl.h
Support for TCL protocols.
IRac::hasStateChanged
bool hasStateChanged(void)
Check if the internal state has changed from what was previously sent.
Definition: IRac.cpp:2790
IRac::haierYrwo2
void haierYrwo2(IRHaierACYRW02 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool filter, const int16_t sleep=-1)
Send a Haier YRWO2 A/C message with the supplied settings.
Definition: IRac.cpp:1083
IRac::daikin216
void daikin216(IRDaikin216 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo)
Send a Daikin 216-bit A/C message with the supplied settings.
Definition: IRac.cpp:734
ir_Transcold.h
Support for Transcold A/C protocols.
ir_Hitachi.h
Support for Hitachi A/C protocols.
ir_Panasonic.h
Support for Panasonic protocols.
IRac::handleToggles
static stdAc::state_t handleToggles(const stdAc::state_t desired, const stdAc::state_t *prev=NULL)
Create a new state base on desired & previous states but handle any state changes for options that ne...
Definition: IRac.cpp:2166
IRMitsubishi136
Class for handling detailed Mitsubishi 136-bit A/C messages.
Definition: ir_Mitsubishi.h:308
panasonic_ac_remote_model_t
panasonic_ac_remote_model_t
Panasonic A/C model numbers.
Definition: IRsend.h:145
IRremoteESP8266.h
stdAc::swingh_t
swingh_t
Common A/C settings for Horizontal Swing.
Definition: IRsend.h:83
IRac::mitsubishi112
void mitsubishi112(IRMitsubishi112 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet)
Send a Mitsubishi 112-bit A/C message with the supplied settings.
Definition: IRac.cpp:1409
IRAcUtils::decodeToState
bool decodeToState(const decode_results *decode, stdAc::state_t *result, const stdAc::state_t *prev)
Convert a valid IR A/C remote message that we understand enough into a Common A/C state.
Definition: IRac.cpp:3496
IRHitachiAc1
Class for handling detailed Hitachi 104-bit A/C messages.
Definition: ir_Hitachi.h:303
IRac::hitachi424
void hitachi424(IRHitachiAc424 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv)
Send a Hitachi 424-bit A/C message with the supplied settings.
Definition: IRac.cpp:1225
ir_Samsung.h
Support for Samsung protocols. Samsung originally added from https://github.com/shirriff/Arduino-IRre...
IRAcUtils::resultAcToString
String resultAcToString(const decode_results *const result)
Display the human readable state of an A/C message if we can.
Definition: IRac.cpp:3123
IRac::daikin152
void daikin152(IRDaikin152 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool quiet, const bool turbo, const bool econo)
Send a Daikin 152-bit A/C message with the supplied settings.
Definition: IRac.cpp:608
fujitsu_ac_remote_model_t
fujitsu_ac_remote_model_t
Fujitsu A/C model numbers.
Definition: IRsend.h:120
ir_Gree.h
Support for Gree A/C protocols.
IRCarrierAc64
Class for handling detailed Carrier 64 bit A/C messages.
Definition: ir_Carrier.h:84
IRMideaAC
Class for handling detailed Midea A/C messages.
Definition: ir_Midea.h:151
IRKelvinatorAC
Class for handling detailed Kelvinator A/C messages.
Definition: ir_Kelvinator.h:121
IRac::_inverted
bool _inverted
IR LED is lit when GPIO is LOW (true) or HIGH (false)?
Definition: IRac.h:104
IRFujitsuAC
Class for handling detailed Fujitsu A/C messages.
Definition: ir_Fujitsu.h:157
ir_MitsubishiHeavy.h
Support for Mitsubishi Heavy Industry protocols. Code to emulate Mitsubishi Heavy Industries A/C IR r...
IRCoolixAC
Class for handling detailed Coolix A/C messages.
Definition: ir_Coolix.h:112
IRac::midea
void midea(IRMideaAC *ac, const bool on, const stdAc::opmode_t mode, const bool celsius, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool econo, const bool light, const int16_t sleep=-1)
Send a Midea A/C message with the supplied settings.
Definition: IRac.cpp:1334
IRac::panasonic
void panasonic(IRPanasonicAc *ac, const panasonic_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool filter, const int16_t clock=-1)
Send a Panasonic A/C message with the supplied settings.
Definition: IRac.cpp:1606
IRac::swingvToString
static String swingvToString(const stdAc::swingv_t swingv)
Convert the supplied enum into the appropriate String.
Definition: IRac.cpp:3070
ir_Mitsubishi.h
Support for Mitsubishi protocols. Mitsubishi (TV) decoding added from https://github....
IRac
A universal/common/generic interface for controling supported A/Cs.
Definition: IRac.h:50
ir_Teco.h
Support for Teco protocols.
IRac::gree
void gree(IRGreeAC *ac, const gree_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const bool celsius, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool light, const bool clean, const int16_t sleep=-1)
Send a Gree A/C message with the supplied settings.
Definition: IRac.cpp:1008
ir_Delonghi.h
Delonghi A/C.
IRac::electra
void electra(IRElectraAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool lighttoggle, const bool clean)
Send an Electra A/C message with the supplied settings.
Definition: IRac.cpp:860
IRac::cleanState
static stdAc::state_t cleanState(const stdAc::state_t state)
Create a new state base on the provided state that has been suitably fixed.
Definition: IRac.cpp:2153
ir_Argo.h
Support for Argo Ulisse 13 DCI Mobile Split ACs.
IRac::mitsubishi
void mitsubishi(IRMitsubishiAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const int16_t clock=-1)
Send a Mitsubishi A/C message with the supplied settings.
Definition: IRac.cpp:1372
IRac::amcor
void amcor(IRAmcorAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan)
Send an Amcor A/C message with the supplied settings.
Definition: IRac.cpp:334
IRTechnibelAc
Class for handling detailed Technibel A/C messages.
Definition: ir_Technibel.h:77
IREcoclimAc
Class for handling detailed EcoClim A/C 56 bit messages.
Definition: ir_Ecoclim.h:84
IRAirwellAc
Class for handling detailed Airwell A/C messages.
Definition: ir_Airwell.h:60
ir_Voltas.h
Support for Voltas A/C protocol.
IRDaikin152
Class for handling detailed Daikin 152-bit A/C messages.
Definition: ir_Daikin.h:1071
IRLgAc
Class for handling detailed LG A/C messages.
Definition: ir_LG.h:67
ir_Fujitsu.h
Support for Fujitsu A/C protocols. Fujitsu A/C support added by Jonny Graham.
IRHaierAC
Class for handling detailed Haier A/C messages.
Definition: ir_Haier.h:244
IRac::neoclima
void neoclima(IRNeoclimaAc *ac, const bool on, const stdAc::opmode_t mode, const bool celsius, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool econo, const bool light, const bool filter, const int16_t sleep=-1)
Send a Neoclima A/C message with the supplied settings.
Definition: IRac.cpp:1565
IRDaikin160
Class for handling detailed Daikin 160-bit A/C messages.
Definition: ir_Daikin.h:892
IRac::opmodeToString
static String opmodeToString(const stdAc::opmode_t mode)
Convert the supplied operation mode into the appropriate String.
Definition: IRac.cpp:3026
IRSharpAc
Class for handling detailed Sharp A/C messages.
Definition: ir_Sharp.h:137
IRac::toshiba
void toshiba(IRToshibaAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool econo)
Send a Toshiba A/C message with the supplied settings.
Definition: IRac.cpp:1924
ir_Goodweather.h
Support for Goodweather compatible HVAC protocols.
IRac::argo
void argo(IRArgoAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const int16_t sleep=-1)
Send an Argo A/C message with the supplied settings.
Definition: IRac.cpp:366
lg_ac_remote_model_t
lg_ac_remote_model_t
LG A/C model numbers.
Definition: IRsend.h:175
IRac::mitsubishi136
void mitsubishi136(IRMitsubishi136 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool quiet)
Send a Mitsubishi 136-bit A/C message with the supplied settings.
Definition: IRac.cpp:1445
stdAc::fanspeed_t::kAuto
@ kAuto
IRac::_modulation
bool _modulation
Is frequency modulation to be used?
Definition: IRac.h:105
IRac::teco
void teco(IRTecoAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool light, const int16_t sleep=-1)
Send a Teco A/C message with the supplied settings.
Definition: IRac.cpp:1891
IRac::strToOpmode
static stdAc::opmode_t strToOpmode(const char *str, const stdAc::opmode_t def=stdAc::opmode_t::kAuto)
Convert the supplied str into the appropriate enum.
Definition: IRac.cpp:2796
ir_Sanyo.h
Support for Sanyo protocols. Sanyo LC7461 support originally by marcosamarinho Sanyo SA 8650B origina...
IRac::hitachi1
void hitachi1(IRHitachiAc1 *ac, const hitachi_ac1_remote_model_t model, const bool on, const bool power_toggle, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool swing_toggle, const int16_t sleep=-1)
Send a Hitachi1 A/C message with the supplied settings.
Definition: IRac.cpp:1152
IRTranscoldAc
Class for handling detailed Transcold A/C messages.
Definition: ir_Transcold.h:120
stdAc::swingh_t::kOff
@ kOff
IRac::panasonic32
void panasonic32(IRPanasonicAc32 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh)
Send a Panasonic A/C message with the supplied settings.
Definition: IRac.cpp:1642
ir_Whirlpool.h
Support for Whirlpool protocols. Decoding help from: @redmusicxd, @josh929800, @raducostea.
IRac::strToBool
static bool strToBool(const char *str, const bool def=false)
Convert the supplied str into the appropriate boolean value.
Definition: IRac.cpp:3001
IRac::mitsubishiHeavy88
void mitsubishiHeavy88(IRMitsubishiHeavy88Ac *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool econo, const bool clean)
Send a Mitsubishi Heavy 88-bit A/C message with the supplied settings.
Definition: IRac.cpp:1480
IRac::strToSwingV
static stdAc::swingv_t strToSwingV(const char *str, const stdAc::swingv_t def=stdAc::swingv_t::kOff)
Convert the supplied str into the appropriate enum.
Definition: IRac.cpp:2857
IRVestelAc
Class for handling detailed Vestel A/C messages.
Definition: ir_Vestel.h:100
IRPanasonicAc32
Class for handling detailed Panasonic 32bit A/C messages.
Definition: ir_Panasonic.h:219
IRTrotecESP
Class for handling detailed Trotec A/C messages.
Definition: ir_Trotec.h:91
IRTecoAc
Class for handling detailed Teco A/C messages.
Definition: ir_Teco.h:62
IRac::swinghToString
static String swinghToString(const stdAc::swingh_t swingh)
Convert the supplied enum into the appropriate String.
Definition: IRac.cpp:3094
IRac::fujitsu
void fujitsu(IRFujitsuAC *ac, const fujitsu_ac_remote_model_t model, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool econo, const bool filter, const bool clean, const int16_t sleep=-1)
Send a Fujitsu A/C message with the supplied settings.
Definition: IRac.cpp:902
ir_Technibel.h
Support for Technibel protocol.
IRac::delonghiac
void delonghiac(IRDelonghiAc *ac, const bool on, const stdAc::opmode_t mode, const bool celsius, const float degrees, const stdAc::fanspeed_t fan, const bool turbo, const int16_t sleep=-1)
Send a Delonghi A/C message with the supplied settings.
Definition: IRac.cpp:794
IRac::_prev
stdAc::state_t _prev
The state we expect the device to currently be in.
Definition: IRac.h:106
IRHaierACYRW02
Class for handling detailed Haier ACYRW02 A/C messages.
Definition: ir_Haier.h:314
IRac::daikin160
void daikin160(IRDaikin160 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv)
Send a Daikin 160-bit A/C message with the supplied settings.
Definition: IRac.cpp:641
IRac::corona
void corona(IRCoronaAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool econo)
Send a Corona A/C message with the supplied settings.
Definition: IRac.cpp:496
IRac::initState
static void initState(stdAc::state_t *state, const decode_type_t vendor, const int16_t model, const bool power, const stdAc::opmode_t mode, const float degrees, const bool celsius, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool econo, const bool light, const bool filter, const bool clean, const bool beep, const int16_t sleep, const int16_t clock)
Initialise the given state with the supplied settings.
Definition: IRac.cpp:86
IRac::mitsubishiHeavy152
void mitsubishiHeavy152(IRMitsubishiHeavy152Ac *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool quiet, const bool turbo, const bool econo, const bool filter, const bool clean, const int16_t sleep=-1)
Send a Mitsubishi Heavy 152-bit A/C message with the supplied settings.
Definition: IRac.cpp:1521
stdAc::swingv_t::kOff
@ kOff
ir_Haier.h
Support for Haier A/C protocols. The specifics of reverse engineering the protocols details:
IRMitsubishiHeavy88Ac
Class for handling detailed Mitsubishi Heavy 88-bit A/C messages.
Definition: ir_MitsubishiHeavy.h:271
IRGreeAC
Class for handling detailed Gree A/C messages.
Definition: ir_Gree.h:133
IRac::coolix
void coolix(IRCoolixAC *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const stdAc::swingh_t swingh, const bool turbo, const bool light, const bool clean, const int16_t sleep=-1)
Send a Coolix A/C message with the supplied settings.
Definition: IRac.cpp:435
IRac::strToFanspeed
static stdAc::fanspeed_t strToFanspeed(const char *str, const stdAc::fanspeed_t def=stdAc::fanspeed_t::kAuto)
Convert the supplied str into the appropriate enum.
Definition: IRac.cpp:2826
ir_Toshiba.h
Support for Toshiba protocols.
IRac::goodweather
void goodweather(IRGoodweatherAc *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const bool turbo, const bool light, const int16_t sleep=-1)
Send a Goodweather A/C message with the supplied settings.
Definition: IRac.cpp:966
stdAc::state_t
Structure to hold a common A/C state.
Definition: IRsend.h:97
IRGoodweatherAc
Class for handling detailed Goodweather A/C messages.
Definition: ir_Goodweather.h:100
ir_Vestel.h
Support for Vestel protocols. Vestel added by Erdem U. Altinyurt.
ir_Corona.h
IRArgoAC
Class for handling detailed Argo A/C messages.
Definition: ir_Argo.h:127
IRNeoclimaAc
Class for handling detailed Neoclima A/C messages.
Definition: ir_Neoclima.h:120
IRac::isProtocolSupported
static bool isProtocolSupported(const decode_type_t protocol)
Is the given protocol supported by the IRac class?
Definition: IRac.cpp:139
IRDaikin176
Class for handling detailed Daikin 176-bit A/C messages.
Definition: ir_Daikin.h:944
ir_Amcor.h
Amcor A/C protocol.
IRac::_pin
uint16_t _pin
The GPIO to use to transmit messages from.
Definition: IRac.h:103
IRac::technibel
void technibel(IRTechnibelAc *ac, const bool on, const stdAc::opmode_t mode, const bool celsius, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const int16_t sleep=-1)
Send a Technibel A/C message with the supplied settings.
Definition: IRac.cpp:1858
voltas_ac_remote_model_t
voltas_ac_remote_model_t
Voltas A/C model numbers.
Definition: IRsend.h:163
sharp_ac_remote_model_t
sharp_ac_remote_model_t
Sharp A/C model numbers.
Definition: IRsend.h:156
ir_LG.h
Support for LG protocols.
IRac::carrier64
void carrier64(IRCarrierAc64 *ac, const bool on, const stdAc::opmode_t mode, const float degrees, const stdAc::fanspeed_t fan, const stdAc::swingv_t swingv, const int16_t sleep=-1)
Send a Carrier 64-bit A/C message with the supplied settings.
Definition: IRac.cpp:398
stdAc::opmode_t
opmode_t
Common A/C settings for A/C operating modes.
Definition: IRsend.h:46