IRremoteESP8266
IRremoteESP8266.h
Go to the documentation of this file.
1  /***************************************************
2  * IRremote for ESP8266
3  *
4  * Based on the IRremote library for Arduino by Ken Shirriff
5  * Version 0.11 August, 2009
6  * Copyright 2009 Ken Shirriff
7  * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html
8  *
9  * Edited by Mitra to add new controller SANYO
10  *
11  * Interrupt code based on NECIRrcv by Joe Knapp
12  * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556
13  * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/
14  *
15  * JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post)
16  * LG added by Darryl Smith (based on the JVC protocol)
17  * Whynter A/C ARC-110WD added by Francesco Meschia
18  * Coolix A/C / heatpump added by (send) bakrus & (decode) crankyoldgit
19  * Denon: sendDenon, decodeDenon added by Massimiliano Pinto
20  (from https://github.com/z3t0/Arduino-IRremote/blob/master/ir_Denon.cpp)
21  * Kelvinator A/C and Sherwood added by crankyoldgit
22  * Mitsubishi (TV) sending added by crankyoldgit
23  * Pronto code sending added by crankyoldgit
24  * Mitsubishi & Toshiba A/C added by crankyoldgit
25  * (derived from https://github.com/r45635/HVAC-IR-Control)
26  * DISH decode by marcosamarinho
27  * Gree Heatpump sending added by Ville Skyttä (scop)
28  * (derived from https://github.com/ToniA/arduino-heatpumpir/blob/master/GreeHeatpumpIR.cpp)
29  * Updated by markszabo (https://github.com/crankyoldgit/IRremoteESP8266) for sending IR code on ESP8266
30  * Updated by Sebastien Warin (http://sebastien.warin.fr) for receiving IR code on ESP8266
31  *
32  * Updated by sillyfrog for Daikin, adopted from
33  * (https://github.com/mharizanov/Daikin-AC-remote-control-over-the-Internet/)
34  * Fujitsu A/C code added by jonnygraham
35  * Trotec AC code by stufisher
36  * Carrier & Haier AC code by crankyoldgit
37  * Vestel AC code by Erdem U. Altınyurt
38  * Teco AC code by Fabien Valthier (hcoohb)
39  * Mitsubishi 112 AC Code by kuchel77
40  *
41  * GPL license, all text above must be included in any redistribution
42  ****************************************************/
43 
44 #ifndef IRREMOTEESP8266_H_
45 #define IRREMOTEESP8266_H_
46 
47 #define __STDC_LIMIT_MACROS
48 #include <stdint.h>
49 #ifdef UNIT_TEST
50 #include <iostream>
51 #include <string>
52 #endif // UNIT_TEST
53 
54 // Library Version
55 #define _IRREMOTEESP8266_VERSION_ "2.7.9"
56 
57 // Set the language & locale for the library. See the `locale` dir for options.
58 #ifndef _IR_LOCALE_
59 #define _IR_LOCALE_ en-AU
60 #endif // _IR_LOCALE_
61 
62 // Do we enable all the protocols by default (true), or disable them (false)?
63 // This allows users of the library to disable or enable all protocols at
64 // compile-time with `-D_IR_ENABLE_DEFAULT_=true` or
65 // `-D_IR_ENABLE_DEFAULT_=false` compiler flags respectively.
66 // Everything is included by default.
67 // e.g. If you only want to enable use of he NEC protocol to save program space,
68 // you would use something like:
69 // `-D_IR_ENABLE_DEFAULT_=false -DDECODE_NEC=true -DSEND_NEC=true`
70 //
71 // or alter your 'platform.ini' file accordingly:
72 // ```
73 // build_flags = -D_IR_ENABLE_DEFAULT_=false
74 // -DDECODE_NEC=true
75 // -DSEND_NEC=true
76 // ```
77 // If you want to enable support for every protocol *except* _decoding_ the
78 // Kelvinator protocol, you would use:
79 // `-DDECODE_KELVINATOR=false`
80 #ifndef _IR_ENABLE_DEFAULT_
81 #define _IR_ENABLE_DEFAULT_ true // Unless set externally, the default is on.
82 #endif // _IR_ENABLE_DEFAULT_
83 
84 // Supported IR protocols
85 // Each protocol you include costs memory and, during decode, costs time
86 // Disable (set to false) all the protocols you do not need/want!
87 // The Air Conditioner protocols are the most expensive memory-wise.
88 //
89 
90 // Semi-unique code for unknown messages
91 #ifndef DECODE_HASH
92 #define DECODE_HASH _IR_ENABLE_DEFAULT_
93 #endif // DECODE_HASH
94 
95 #ifndef SEND_RAW
96 #define SEND_RAW _IR_ENABLE_DEFAULT_
97 #endif // SEND_RAW
98 
99 #ifndef DECODE_NEC
100 #define DECODE_NEC _IR_ENABLE_DEFAULT_
101 #endif // DECODE_NEC
102 #ifndef SEND_NEC
103 #define SEND_NEC _IR_ENABLE_DEFAULT_
104 #endif // SEND_NEC
105 
106 #ifndef DECODE_SHERWOOD
107 #define DECODE_SHERWOOD false // Not applicable. Actually is DECODE_NEC
108 #endif // DECODE_SHERWOOD
109 #ifndef SEND_SHERWOOD
110 #define SEND_SHERWOOD _IR_ENABLE_DEFAULT_
111 #endif // SEND_SHERWOOD
112 
113 #ifndef DECODE_RC5
114 #define DECODE_RC5 _IR_ENABLE_DEFAULT_
115 #endif // DECODE_RC5
116 #ifndef SEND_RC5
117 #define SEND_RC5 _IR_ENABLE_DEFAULT_
118 #endif // SEND_RC5
119 
120 #ifndef DECODE_RC6
121 #define DECODE_RC6 _IR_ENABLE_DEFAULT_
122 #endif // DECODE_RC6
123 #ifndef SEND_RC6
124 #define SEND_RC6 _IR_ENABLE_DEFAULT_
125 #endif // SEND_RC6
126 
127 #ifndef DECODE_RCMM
128 #define DECODE_RCMM _IR_ENABLE_DEFAULT_
129 #endif // DECODE_RCMM
130 #ifndef SEND_RCMM
131 #define SEND_RCMM _IR_ENABLE_DEFAULT_
132 #endif // SEND_RCMM
133 
134 #ifndef DECODE_SONY
135 #define DECODE_SONY _IR_ENABLE_DEFAULT_
136 #endif // DECODE_SONY
137 #ifndef SEND_SONY
138 #define SEND_SONY _IR_ENABLE_DEFAULT_
139 #endif // SEND_SONY
140 
141 #ifndef DECODE_PANASONIC
142 #define DECODE_PANASONIC _IR_ENABLE_DEFAULT_
143 #endif // DECODE_PANASONIC
144 #ifndef SEND_PANASONIC
145 #define SEND_PANASONIC _IR_ENABLE_DEFAULT_
146 #endif // SEND_PANASONIC
147 
148 #ifndef DECODE_JVC
149 #define DECODE_JVC _IR_ENABLE_DEFAULT_
150 #endif // DECODE_JVC
151 #ifndef SEND_JVC
152 #define SEND_JVC _IR_ENABLE_DEFAULT_
153 #endif // SEND_JVC
154 
155 #ifndef DECODE_SAMSUNG
156 #define DECODE_SAMSUNG _IR_ENABLE_DEFAULT_
157 #endif // DECODE_SAMSUNG
158 #ifndef SEND_SAMSUNG
159 #define SEND_SAMSUNG _IR_ENABLE_DEFAULT_
160 #endif // SEND_SAMSUNG
161 
162 #ifndef DECODE_SAMSUNG36
163 #define DECODE_SAMSUNG36 _IR_ENABLE_DEFAULT_
164 #endif // DECODE_SAMSUNG36
165 #ifndef SEND_SAMSUNG36
166 #define SEND_SAMSUNG36 _IR_ENABLE_DEFAULT_
167 #endif // SEND_SAMSUNG36
168 
169 #ifndef DECODE_SAMSUNG_AC
170 #define DECODE_SAMSUNG_AC _IR_ENABLE_DEFAULT_
171 #endif // DECODE_SAMSUNG_AC
172 #ifndef SEND_SAMSUNG_AC
173 #define SEND_SAMSUNG_AC _IR_ENABLE_DEFAULT_
174 #endif // SEND_SAMSUNG_AC
175 
176 #ifndef DECODE_WHYNTER
177 #define DECODE_WHYNTER _IR_ENABLE_DEFAULT_
178 #endif // DECODE_WHYNTER
179 #ifndef SEND_WHYNTER
180 #define SEND_WHYNTER _IR_ENABLE_DEFAULT_
181 #endif // SEND_WHYNTER
182 
183 #ifndef DECODE_AIWA_RC_T501
184 #define DECODE_AIWA_RC_T501 _IR_ENABLE_DEFAULT_
185 #endif // DECODE_AIWA_RC_T501
186 #ifndef SEND_AIWA_RC_T501
187 #define SEND_AIWA_RC_T501 _IR_ENABLE_DEFAULT_
188 #endif // SEND_AIWA_RC_T501
189 
190 #ifndef DECODE_LG
191 #define DECODE_LG _IR_ENABLE_DEFAULT_
192 #endif // DECODE_LG
193 #ifndef SEND_LG
194 #define SEND_LG _IR_ENABLE_DEFAULT_
195 #endif // SEND_LG
196 
197 #ifndef DECODE_SANYO
198 #define DECODE_SANYO _IR_ENABLE_DEFAULT_
199 #endif // DECODE_SANYO
200 #ifndef SEND_SANYO
201 #define SEND_SANYO _IR_ENABLE_DEFAULT_
202 #endif // SEND_SANYO
203 
204 #ifndef DECODE_SANYO_AC
205 #define DECODE_SANYO_AC _IR_ENABLE_DEFAULT_
206 #endif // DECODE_SANYO_AC
207 #ifndef SEND_SANYO_AC
208 #define SEND_SANYO_AC _IR_ENABLE_DEFAULT_
209 #endif // SEND_SANYO_AC
210 
211 #ifndef DECODE_MITSUBISHI
212 #define DECODE_MITSUBISHI _IR_ENABLE_DEFAULT_
213 #endif // DECODE_MITSUBISHI
214 #ifndef SEND_MITSUBISHI
215 #define SEND_MITSUBISHI _IR_ENABLE_DEFAULT_
216 #endif // SEND_MITSUBISHI
217 
218 #ifndef DECODE_MITSUBISHI2
219 #define DECODE_MITSUBISHI2 _IR_ENABLE_DEFAULT_
220 #endif // DECODE_MITSUBISHI2
221 #ifndef SEND_MITSUBISHI2
222 #define SEND_MITSUBISHI2 _IR_ENABLE_DEFAULT_
223 #endif // SEND_MITSUBISHI2
224 
225 #ifndef DECODE_DISH
226 #define DECODE_DISH _IR_ENABLE_DEFAULT_
227 #endif // DECODE_DISH
228 #ifndef SEND_DISH
229 #define SEND_DISH _IR_ENABLE_DEFAULT_
230 #endif // SEND_DISH
231 
232 #ifndef DECODE_SHARP
233 #define DECODE_SHARP _IR_ENABLE_DEFAULT_
234 #endif // DECODE_SHARP
235 #ifndef SEND_SHARP
236 #define SEND_SHARP _IR_ENABLE_DEFAULT_
237 #endif // SEND_SHARP
238 
239 #ifndef DECODE_SHARP_AC
240 #define DECODE_SHARP_AC _IR_ENABLE_DEFAULT_
241 #endif // DECODE_SHARP_AC
242 #ifndef SEND_SHARP_AC
243 #define SEND_SHARP_AC _IR_ENABLE_DEFAULT_
244 #endif // SEND_SHARP_AC
245 
246 #ifndef DECODE_DENON
247 #define DECODE_DENON _IR_ENABLE_DEFAULT_
248 #endif // DECODE_DENON
249 #ifndef SEND_DENON
250 #define SEND_DENON _IR_ENABLE_DEFAULT_
251 #endif // SEND_DENON
252 
253 #ifndef DECODE_KELVINATOR
254 #define DECODE_KELVINATOR _IR_ENABLE_DEFAULT_
255 #endif // DECODE_KELVINATOR
256 #ifndef SEND_KELVINATOR
257 #define SEND_KELVINATOR _IR_ENABLE_DEFAULT_
258 #endif // SEND_KELVINATOR
259 
260 #ifndef DECODE_MITSUBISHI_AC
261 #define DECODE_MITSUBISHI_AC _IR_ENABLE_DEFAULT_
262 #endif // DECODE_MITSUBISHI_AC
263 #ifndef SEND_MITSUBISHI_AC
264 #define SEND_MITSUBISHI_AC _IR_ENABLE_DEFAULT_
265 #endif // SEND_MITSUBISHI_AC
266 
267 #ifndef DECODE_MITSUBISHI136
268 #define DECODE_MITSUBISHI136 _IR_ENABLE_DEFAULT_
269 #endif // DECODE_MITSUBISHI136
270 #ifndef SEND_MITSUBISHI136
271 #define SEND_MITSUBISHI136 _IR_ENABLE_DEFAULT_
272 #endif // SEND_MITSUBISHI136
273 
274 #ifndef DECODE_MITSUBISHI112
275 #define DECODE_MITSUBISHI112 _IR_ENABLE_DEFAULT_
276 #endif // DECODE_MITSUBISHI112
277 #ifndef SEND_MITSUBISHI112
278 #define SEND_MITSUBISHI112 _IR_ENABLE_DEFAULT_
279 #endif // SEND_MITSUBISHI112
280 
281 #ifndef DECODE_FUJITSU_AC
282 #define DECODE_FUJITSU_AC _IR_ENABLE_DEFAULT_
283 #endif // DECODE_FUJITSU_AC
284 #ifndef SEND_FUJITSU_AC
285 #define SEND_FUJITSU_AC _IR_ENABLE_DEFAULT_
286 #endif // SEND_FUJITSU_AC
287 
288 #ifndef DECODE_INAX
289 #define DECODE_INAX _IR_ENABLE_DEFAULT_
290 #endif // DECODE_INAX
291 #ifndef SEND_INAX
292 #define SEND_INAX _IR_ENABLE_DEFAULT_
293 #endif // SEND_INAX
294 
295 #ifndef DECODE_DAIKIN
296 #define DECODE_DAIKIN _IR_ENABLE_DEFAULT_
297 #endif // DECODE_DAIKIN
298 #ifndef SEND_DAIKIN
299 #define SEND_DAIKIN _IR_ENABLE_DEFAULT_
300 #endif // SEND_DAIKIN
301 
302 #ifndef DECODE_COOLIX
303 #define DECODE_COOLIX _IR_ENABLE_DEFAULT_
304 #endif // DECODE_COOLIX
305 #ifndef SEND_COOLIX
306 #define SEND_COOLIX _IR_ENABLE_DEFAULT_
307 #endif // SEND_COOLIX
308 
309 #ifndef DECODE_GLOBALCACHE
310 #define DECODE_GLOBALCACHE false // Not applicable.
311 #endif // DECODE_GLOBALCACHE
312 #ifndef SEND_GLOBALCACHE
313 #define SEND_GLOBALCACHE _IR_ENABLE_DEFAULT_
314 #endif // SEND_GLOBALCACHE
315 
316 #ifndef DECODE_GOODWEATHER
317 #define DECODE_GOODWEATHER _IR_ENABLE_DEFAULT_
318 #endif // DECODE_GOODWEATHER
319 #ifndef SEND_GOODWEATHER
320 #define SEND_GOODWEATHER _IR_ENABLE_DEFAULT_
321 #endif // SEND_GOODWEATHER
322 
323 #ifndef DECODE_GREE
324 #define DECODE_GREE _IR_ENABLE_DEFAULT_
325 #endif // DECODE_GREE
326 #ifndef SEND_GREE
327 #define SEND_GREE _IR_ENABLE_DEFAULT_
328 #endif // SEND_GREE
329 
330 #ifndef DECODE_PRONTO
331 #define DECODE_PRONTO false // Not applicable.
332 #endif // DECODE_PRONTO
333 #ifndef SEND_PRONTO
334 #define SEND_PRONTO _IR_ENABLE_DEFAULT_
335 #endif // SEND_PRONTO
336 
337 #ifndef DECODE_ARGO
338 #define DECODE_ARGO _IR_ENABLE_DEFAULT_
339 #endif // DECODE_ARGO
340 #ifndef SEND_ARGO
341 #define SEND_ARGO _IR_ENABLE_DEFAULT_
342 #endif // SEND_ARGO
343 
344 #ifndef DECODE_TROTEC
345 #define DECODE_TROTEC _IR_ENABLE_DEFAULT_
346 #endif // DECODE_TROTEC
347 #ifndef SEND_TROTEC
348 #define SEND_TROTEC _IR_ENABLE_DEFAULT_
349 #endif // SEND_TROTEC
350 
351 #ifndef DECODE_NIKAI
352 #define DECODE_NIKAI _IR_ENABLE_DEFAULT_
353 #endif // DECODE_NIKAI
354 #ifndef SEND_NIKAI
355 #define SEND_NIKAI _IR_ENABLE_DEFAULT_
356 #endif // SEND_NIKAI
357 
358 #ifndef DECODE_TOSHIBA_AC
359 #define DECODE_TOSHIBA_AC _IR_ENABLE_DEFAULT_
360 #endif // DECODE_TOSHIBA_AC
361 #ifndef SEND_TOSHIBA_AC
362 #define SEND_TOSHIBA_AC _IR_ENABLE_DEFAULT_
363 #endif // SEND_TOSHIBA_AC
364 
365 #ifndef DECODE_MAGIQUEST
366 #define DECODE_MAGIQUEST _IR_ENABLE_DEFAULT_
367 #endif // DECODE_MAGIQUEST
368 #ifndef SEND_MAGIQUEST
369 #define SEND_MAGIQUEST _IR_ENABLE_DEFAULT_
370 #endif // SEND_MAGIQUEST
371 
372 #ifndef DECODE_MIDEA
373 #define DECODE_MIDEA _IR_ENABLE_DEFAULT_
374 #endif // DECODE_MIDEA
375 #ifndef SEND_MIDEA
376 #define SEND_MIDEA _IR_ENABLE_DEFAULT_
377 #endif // SEND_MIDEA
378 
379 #ifndef DECODE_MIDEA24
380 #define DECODE_MIDEA24 _IR_ENABLE_DEFAULT_
381 #endif // DECODE_MIDEA24
382 #ifndef SEND_MIDEA24
383 #define SEND_MIDEA24 _IR_ENABLE_DEFAULT_
384 #endif // SEND_MIDEA24
385 
386 #ifndef DECODE_LASERTAG
387 #define DECODE_LASERTAG _IR_ENABLE_DEFAULT_
388 #endif // DECODE_LASERTAG
389 #ifndef SEND_LASERTAG
390 #define SEND_LASERTAG _IR_ENABLE_DEFAULT_
391 #endif // SEND_LASERTAG
392 
393 #ifndef DECODE_CARRIER_AC
394 #define DECODE_CARRIER_AC _IR_ENABLE_DEFAULT_
395 #endif // DECODE_CARRIER_AC
396 #ifndef SEND_CARRIER_AC
397 #define SEND_CARRIER_AC _IR_ENABLE_DEFAULT_
398 #endif // SEND_CARRIER_AC
399 
400 #ifndef DECODE_CARRIER_AC40
401 #define DECODE_CARRIER_AC40 _IR_ENABLE_DEFAULT_
402 #endif // DECODE_CARRIER_AC40
403 #ifndef SEND_CARRIER_AC40
404 #define SEND_CARRIER_AC40 _IR_ENABLE_DEFAULT_
405 #endif // SEND_CARRIER_AC40
406 
407 #ifndef DECODE_CARRIER_AC64
408 #define DECODE_CARRIER_AC64 _IR_ENABLE_DEFAULT_
409 #endif // DECODE_CARRIER_AC64
410 #ifndef SEND_CARRIER_AC64
411 #define SEND_CARRIER_AC64 _IR_ENABLE_DEFAULT_
412 #endif // SEND_CARRIER_AC64
413 
414 #ifndef DECODE_HAIER_AC
415 #define DECODE_HAIER_AC _IR_ENABLE_DEFAULT_
416 #endif // DECODE_HAIER_AC
417 #ifndef SEND_HAIER_AC
418 #define SEND_HAIER_AC _IR_ENABLE_DEFAULT_
419 #endif // SEND_HAIER_AC
420 
421 #ifndef DECODE_HITACHI_AC
422 #define DECODE_HITACHI_AC _IR_ENABLE_DEFAULT_
423 #endif // DECODE_HITACHI_AC
424 #ifndef SEND_HITACHI_AC
425 #define SEND_HITACHI_AC _IR_ENABLE_DEFAULT_
426 #endif // SEND_HITACHI_AC
427 
428 #ifndef DECODE_HITACHI_AC1
429 #define DECODE_HITACHI_AC1 _IR_ENABLE_DEFAULT_
430 #endif // DECODE_HITACHI_AC1
431 #ifndef SEND_HITACHI_AC1
432 #define SEND_HITACHI_AC1 _IR_ENABLE_DEFAULT_
433 #endif // SEND_HITACHI_AC1
434 
435 #ifndef DECODE_HITACHI_AC2
436 #define DECODE_HITACHI_AC2 _IR_ENABLE_DEFAULT_
437 #endif // DECODE_HITACHI_AC2
438 #ifndef SEND_HITACHI_AC2
439 #define SEND_HITACHI_AC2 _IR_ENABLE_DEFAULT_
440 #endif // SEND_HITACHI_AC2
441 
442 #ifndef DECODE_HITACHI_AC3
443 #define DECODE_HITACHI_AC3 _IR_ENABLE_DEFAULT_
444 #endif // DECODE_HITACHI_AC3
445 #ifndef SEND_HITACHI_AC3
446 #define SEND_HITACHI_AC3 _IR_ENABLE_DEFAULT_
447 #endif // SEND_HITACHI_AC3
448 
449 #ifndef DECODE_HITACHI_AC344
450 #define DECODE_HITACHI_AC344 _IR_ENABLE_DEFAULT_
451 #endif // DECODE_HITACHI_AC344
452 #ifndef SEND_HITACHI_AC344
453 #define SEND_HITACHI_AC344 _IR_ENABLE_DEFAULT_
454 #endif // SEND_HITACHI_AC344
455 
456 #ifndef DECODE_HITACHI_AC424
457 #define DECODE_HITACHI_AC424 _IR_ENABLE_DEFAULT_
458 #endif // DECODE_HITACHI_AC424
459 #ifndef SEND_HITACHI_AC424
460 #define SEND_HITACHI_AC424 _IR_ENABLE_DEFAULT_
461 #endif // SEND_HITACHI_AC424
462 
463 #ifndef DECODE_GICABLE
464 #define DECODE_GICABLE _IR_ENABLE_DEFAULT_
465 #endif // DECODE_GICABLE
466 #ifndef SEND_GICABLE
467 #define SEND_GICABLE _IR_ENABLE_DEFAULT_
468 #endif // SEND_GICABLE
469 
470 #ifndef DECODE_HAIER_AC_YRW02
471 #define DECODE_HAIER_AC_YRW02 _IR_ENABLE_DEFAULT_
472 #endif // DECODE_HAIER_AC_YRW02
473 #ifndef SEND_HAIER_AC_YRW02
474 #define SEND_HAIER_AC_YRW02 _IR_ENABLE_DEFAULT_
475 #endif // SEND_HAIER_AC_YRW02
476 
477 #ifndef DECODE_WHIRLPOOL_AC
478 #define DECODE_WHIRLPOOL_AC _IR_ENABLE_DEFAULT_
479 #endif // DECODE_WHIRLPOOL_AC
480 #ifndef SEND_WHIRLPOOL_AC
481 #define SEND_WHIRLPOOL_AC _IR_ENABLE_DEFAULT_
482 #endif // SEND_WHIRLPOOL_AC
483 
484 #ifndef DECODE_LUTRON
485 #define DECODE_LUTRON _IR_ENABLE_DEFAULT_
486 #endif // DECODE_LUTRON
487 #ifndef SEND_LUTRON
488 #define SEND_LUTRON _IR_ENABLE_DEFAULT_
489 #endif // SEND_LUTRON
490 
491 #ifndef DECODE_ELECTRA_AC
492 #define DECODE_ELECTRA_AC _IR_ENABLE_DEFAULT_
493 #endif // DECODE_ELECTRA_AC
494 #ifndef SEND_ELECTRA_AC
495 #define SEND_ELECTRA_AC _IR_ENABLE_DEFAULT_
496 #endif // SEND_ELECTRA_AC
497 
498 #ifndef DECODE_PANASONIC_AC
499 #define DECODE_PANASONIC_AC _IR_ENABLE_DEFAULT_
500 #endif // DECODE_PANASONIC_AC
501 #ifndef SEND_PANASONIC_AC
502 #define SEND_PANASONIC_AC _IR_ENABLE_DEFAULT_
503 #endif // SEND_PANASONIC_AC
504 
505 #ifndef DECODE_MWM
506 #define DECODE_MWM _IR_ENABLE_DEFAULT_
507 #endif // DECODE_MWM
508 #ifndef SEND_MWM
509 #define SEND_MWM _IR_ENABLE_DEFAULT_
510 #endif // SEND_MWM
511 
512 #ifndef DECODE_PIONEER
513 #define DECODE_PIONEER _IR_ENABLE_DEFAULT_
514 #endif // DECODE_PIONEER
515 #ifndef SEND_PIONEER
516 #define SEND_PIONEER _IR_ENABLE_DEFAULT_
517 #endif // SEND_PIONEER
518 
519 #ifndef DECODE_DAIKIN2
520 #define DECODE_DAIKIN2 _IR_ENABLE_DEFAULT_
521 #endif // DECODE_DAIKIN2
522 #ifndef SEND_DAIKIN2
523 #define SEND_DAIKIN2 _IR_ENABLE_DEFAULT_
524 #endif // SEND_DAIKIN2
525 
526 #ifndef DECODE_VESTEL_AC
527 #define DECODE_VESTEL_AC _IR_ENABLE_DEFAULT_
528 #endif // DECODE_VESTEL_AC
529 #ifndef SEND_VESTEL_AC
530 #define SEND_VESTEL_AC _IR_ENABLE_DEFAULT_
531 #endif // SEND_VESTEL_AC
532 
533 #ifndef DECODE_TECO
534 #define DECODE_TECO _IR_ENABLE_DEFAULT_
535 #endif // DECODE_TECO
536 #ifndef SEND_TECO
537 #define SEND_TECO _IR_ENABLE_DEFAULT_
538 #endif // SEND_TECO
539 
540 #ifndef DECODE_TCL112AC
541 #define DECODE_TCL112AC _IR_ENABLE_DEFAULT_
542 #endif // DECODE_TCL112AC
543 #ifndef SEND_TCL112AC
544 #define SEND_TCL112AC _IR_ENABLE_DEFAULT_
545 #endif // SEND_TCL112AC
546 
547 #ifndef DECODE_LEGOPF
548 #define DECODE_LEGOPF _IR_ENABLE_DEFAULT_
549 #endif // DECODE_LEGOPF
550 #ifndef SEND_LEGOPF
551 #define SEND_LEGOPF _IR_ENABLE_DEFAULT_
552 #endif // SEND_LEGOPF
553 
554 #ifndef DECODE_MITSUBISHIHEAVY
555 #define DECODE_MITSUBISHIHEAVY _IR_ENABLE_DEFAULT_
556 #endif // DECODE_MITSUBISHIHEAVY
557 #ifndef SEND_MITSUBISHIHEAVY
558 #define SEND_MITSUBISHIHEAVY _IR_ENABLE_DEFAULT_
559 #endif // SEND_MITSUBISHIHEAVY
560 
561 #ifndef DECODE_DAIKIN216
562 #define DECODE_DAIKIN216 _IR_ENABLE_DEFAULT_
563 #endif // DECODE_DAIKIN216
564 #ifndef SEND_DAIKIN216
565 #define SEND_DAIKIN216 _IR_ENABLE_DEFAULT_
566 #endif // SEND_DAIKIN216
567 
568 #ifndef DECODE_DAIKIN160
569 #define DECODE_DAIKIN160 _IR_ENABLE_DEFAULT_
570 #endif // DECODE_DAIKIN160
571 #ifndef SEND_DAIKIN160
572 #define SEND_DAIKIN160 _IR_ENABLE_DEFAULT_
573 #endif // SEND_DAIKIN160
574 
575 #ifndef DECODE_NEOCLIMA
576 #define DECODE_NEOCLIMA _IR_ENABLE_DEFAULT_
577 #endif // DECODE_NEOCLIMA
578 #ifndef SEND_NEOCLIMA
579 #define SEND_NEOCLIMA _IR_ENABLE_DEFAULT_
580 #endif // SEND_NEOCLIMA
581 
582 #ifndef DECODE_DAIKIN176
583 #define DECODE_DAIKIN176 _IR_ENABLE_DEFAULT_
584 #endif // DECODE_DAIKIN176
585 #ifndef SEND_DAIKIN176
586 #define SEND_DAIKIN176 _IR_ENABLE_DEFAULT_
587 #endif // SEND_DAIKIN176
588 
589 #ifndef DECODE_DAIKIN128
590 #define DECODE_DAIKIN128 _IR_ENABLE_DEFAULT_
591 #endif // DECODE_DAIKIN128
592 #ifndef SEND_DAIKIN128
593 #define SEND_DAIKIN128 _IR_ENABLE_DEFAULT_
594 #endif // SEND_DAIKIN128
595 
596 #ifndef DECODE_AMCOR
597 #define DECODE_AMCOR _IR_ENABLE_DEFAULT_
598 #endif // DECODE_AMCOR
599 #ifndef SEND_AMCOR
600 #define SEND_AMCOR _IR_ENABLE_DEFAULT_
601 #endif // SEND_AMCOR
602 
603 #ifndef DECODE_DAIKIN152
604 #define DECODE_DAIKIN152 _IR_ENABLE_DEFAULT_
605 #endif // DECODE_DAIKIN152
606 #ifndef SEND_DAIKIN152
607 #define SEND_DAIKIN152 _IR_ENABLE_DEFAULT_
608 #endif // SEND_DAIKIN152
609 
610 #ifndef DECODE_EPSON
611 #define DECODE_EPSON _IR_ENABLE_DEFAULT_
612 #endif // DECODE_EPSON
613 #ifndef SEND_EPSON
614 #define SEND_EPSON _IR_ENABLE_DEFAULT_
615 #endif // SEND_EPSON
616 
617 #ifndef DECODE_SYMPHONY
618 #define DECODE_SYMPHONY _IR_ENABLE_DEFAULT_
619 #endif // DECODE_SYMPHONY
620 #ifndef SEND_SYMPHONY
621 #define SEND_SYMPHONY _IR_ENABLE_DEFAULT_
622 #endif // SEND_SYMPHONY
623 
624 #ifndef DECODE_DAIKIN64
625 #define DECODE_DAIKIN64 _IR_ENABLE_DEFAULT_
626 #endif // DECODE_DAIKIN64
627 #ifndef SEND_DAIKIN64
628 #define SEND_DAIKIN64 _IR_ENABLE_DEFAULT_
629 #endif // SEND_DAIKIN64
630 
631 #ifndef DECODE_AIRWELL
632 #define DECODE_AIRWELL _IR_ENABLE_DEFAULT_
633 #endif // DECODE_AIRWELL
634 #ifndef SEND_AIRWELL
635 #define SEND_AIRWELL _IR_ENABLE_DEFAULT_
636 #endif // SEND_AIRWELL
637 
638 #ifndef DECODE_DELONGHI_AC
639 #define DECODE_DELONGHI_AC _IR_ENABLE_DEFAULT_
640 #endif // DECODE_DELONGHI_AC
641 #ifndef SEND_DELONGHI_AC
642 #define SEND_DELONGHI_AC _IR_ENABLE_DEFAULT_
643 #endif // SEND_DELONGHI_AC
644 
645 #ifndef DECODE_DOSHISHA
646 #define DECODE_DOSHISHA _IR_ENABLE_DEFAULT_
647 #endif // DECODE_DOSHISHA
648 #ifndef SEND_DOSHISHA
649 #define SEND_DOSHISHA _IR_ENABLE_DEFAULT_
650 #endif // SEND_DOSHISHA
651 
652 #ifndef DECODE_MULTIBRACKETS
653 #define DECODE_MULTIBRACKETS _IR_ENABLE_DEFAULT_
654 #endif // DECODE_MULTIBRACKETS
655 #ifndef SEND_MULTIBRACKETS
656 #define SEND_MULTIBRACKETS _IR_ENABLE_DEFAULT_
657 #endif // SEND_MULTIBRACKETS
658 
659 #ifndef DECODE_CORONA_AC
660 #define DECODE_CORONA_AC _IR_ENABLE_DEFAULT_
661 #endif // DECODE_CORONA_AC
662 #ifndef SEND_CORONA_AC
663 #define SEND_CORONA_AC _IR_ENABLE_DEFAULT_
664 #endif // SEND_CORONA_AC
665 
666 #ifndef DECODE_ZEPEAL
667 #define DECODE_ZEPEAL _IR_ENABLE_DEFAULT_
668 #endif // DECODE_ZEPEAL
669 #ifndef SEND_ZEPEAL
670 #define SEND_ZEPEAL _IR_ENABLE_DEFAULT_
671 #endif // SEND_ZEPEAL
672 
673 #ifndef DECODE_VOLTAS
674 #define DECODE_VOLTAS _IR_ENABLE_DEFAULT_
675 #endif // DECODE_VOLTAS
676 #ifndef SEND_VOLTAS
677 #define SEND_VOLTAS _IR_ENABLE_DEFAULT_
678 #endif // SEND_VOLTAS
679 
680 #ifndef DECODE_METZ
681 #define DECODE_METZ _IR_ENABLE_DEFAULT_
682 #endif // DECODE_METZ
683 #ifndef SEND_METZ
684 #define SEND_METZ _IR_ENABLE_DEFAULT_
685 #endif // SEND_METZ
686 
687 #if (DECODE_ARGO || DECODE_DAIKIN || DECODE_FUJITSU_AC || DECODE_GREE || \
688  DECODE_KELVINATOR || DECODE_MITSUBISHI_AC || DECODE_TOSHIBA_AC || \
689  DECODE_TROTEC || DECODE_HAIER_AC || DECODE_HITACHI_AC || \
690  DECODE_HITACHI_AC1 || DECODE_HITACHI_AC2 || DECODE_HAIER_AC_YRW02 || \
691  DECODE_WHIRLPOOL_AC || DECODE_SAMSUNG_AC || DECODE_ELECTRA_AC || \
692  DECODE_PANASONIC_AC || DECODE_MWM || DECODE_DAIKIN2 || \
693  DECODE_VESTEL_AC || DECODE_TCL112AC || DECODE_MITSUBISHIHEAVY || \
694  DECODE_DAIKIN216 || DECODE_SHARP_AC || DECODE_DAIKIN160 || \
695  DECODE_NEOCLIMA || DECODE_DAIKIN176 || DECODE_DAIKIN128 || \
696  DECODE_AMCOR || DECODE_DAIKIN152 || DECODE_MITSUBISHI136 || \
697  DECODE_MITSUBISHI112 || DECODE_HITACHI_AC424 || DECODE_HITACHI_AC3 || \
698  DECODE_HITACHI_AC344 || DECODE_CORONA_AC || DECODE_SANYO_AC || \
699  DECODE_VOLTAS)
700  // Add any DECODE to the above if it uses result->state (see kStateSizeMax)
701  // you might also want to add the protocol to hasACState function
702 #define DECODE_AC true // We need some common infrastructure for decoding A/Cs.
703 #else
704 #define DECODE_AC false // We don't need that infrastructure.
705 #endif
706 
707 // Use millisecond 'delay()' calls where we can to avoid tripping the WDT.
708 // Note: If you plan to send IR messages in the callbacks of the AsyncWebserver
709 // library, you need to set ALLOW_DELAY_CALLS to false.
710 // Ref: https://github.com/crankyoldgit/IRremoteESP8266/issues/430
711 #ifndef ALLOW_DELAY_CALLS
712 #define ALLOW_DELAY_CALLS true
713 #endif // ALLOW_DELAY_CALLS
714 
715 // Enable a run-time settable high-pass filter on captured data **before**
716 // trying any protocol decoding.
717 // i.e. Try to remove/merge any really short pulses detected in the raw data.
718 // Note: Even when this option is enabled, it is _off_ by default, and requires
719 // a user who knows what they are doing to enable it.
720 // The option to disable this feature is here if your project is _really_
721 // tight on resources. i.e. Saves a small handful of bytes and cpu time.
722 // WARNING: If you use this feature at runtime, you can no longer trust the
723 // **raw** data captured. It will now have been slightly **cooked**!
724 // DANGER: If you set the `noise_floor` value too high, it **WILL** break
725 // decoding of some protocols. You have been warned. Here Be Dragons!
726 //
727 // See: `irrecv::decode()` in IRrecv.cpp for more info.
728 #ifndef ENABLE_NOISE_FILTER_OPTION
729 #define ENABLE_NOISE_FILTER_OPTION true
730 #endif // ENABLE_NOISE_FILTER_OPTION
731 
737  UNKNOWN = -1,
738  UNUSED = 0,
743  PANASONIC, // (5)
748  LG, // (10)
753  COOLIX, // (15)
758  MITSUBISHI_AC, // (20)
763  PRONTO, // Technically not a protocol, but an encoding. (25)
768  RAW, // Technically not a protocol, but an encoding. (30)
769  GLOBALCACHE, // Technically not a protocol, but an encoding.
773  MAGIQUEST, // (35)
778  HITACHI_AC, // (40)
783  WHIRLPOOL_AC, // (45)
788  PIONEER, // (50)
793  TECO, // (55)
803  DAIKIN160, // 65
808  DAIKIN152, // 70
813  EPSON, // 75
818  DELONGHI_AC, // 80
828  VOLTAS, // 90
830  // Add new entries before this one, and update it to point to the last entry.
832 };
833 
834 // Message lengths & required repeat values
835 const uint16_t kNoRepeat = 0;
836 const uint16_t kSingleRepeat = 1;
837 
838 const uint16_t kAirwellBits = 34;
839 const uint16_t kAirwellMinRepeats = 2;
840 const uint16_t kAiwaRcT501Bits = 15;
842 const uint16_t kAlokaBits = 32;
843 const uint16_t kAmcorStateLength = 8;
844 const uint16_t kAmcorBits = kAmcorStateLength * 8;
846 const uint16_t kArgoStateLength = 12;
847 const uint16_t kArgoBits = kArgoStateLength * 8;
848 const uint16_t kArgoDefaultRepeat = kNoRepeat;
849 const uint16_t kCoolixBits = 24;
851 const uint16_t kCarrierAcBits = 32;
853 const uint16_t kCarrierAc40Bits = 40;
854 const uint16_t kCarrierAc40MinRepeat = 2;
855 const uint16_t kCarrierAc64Bits = 64;
857 const uint16_t kCoronaAcStateLengthShort = 7;
860 const uint16_t kCoronaAcBits = kCoronaAcStateLength * 8;
861 const uint16_t kDaikinStateLength = 35;
862 const uint16_t kDaikinBits = kDaikinStateLength * 8;
866 const uint16_t kDaikin2StateLength = 39;
867 const uint16_t kDaikin2Bits = kDaikin2StateLength * 8;
869 const uint16_t kDaikin64Bits = 64;
871 const uint16_t kDaikin160StateLength = 20;
874 const uint16_t kDaikin128StateLength = 16;
877 const uint16_t kDaikin152StateLength = 19;
880 const uint16_t kDaikin176StateLength = 22;
883 const uint16_t kDaikin216StateLength = 27;
886 const uint16_t kDelonghiAcBits = 64;
888 const uint16_t kDenonBits = 15;
889 const uint16_t kDenon48Bits = 48;
890 const uint16_t kDenonLegacyBits = 14;
891 const uint16_t kDishBits = 16;
892 const uint16_t kDishMinRepeat = 3;
893 const uint16_t kDoshishaBits = 40;
894 const uint16_t kEpsonBits = 32;
895 const uint16_t kEpsonMinRepeat = 2;
896 const uint16_t kElectraAcStateLength = 13;
900 const uint16_t kFujitsuAcStateLength = 16;
901 const uint16_t kFujitsuAcStateLengthShort = 7;
904 const uint16_t kGicableBits = 16;
906 const uint16_t kGoodweatherBits = 48;
908 const uint16_t kGreeStateLength = 8;
909 const uint16_t kGreeBits = kGreeStateLength * 8;
910 const uint16_t kGreeDefaultRepeat = kNoRepeat;
911 const uint16_t kHaierACStateLength = 9;
912 const uint16_t kHaierACBits = kHaierACStateLength * 8;
914 const uint16_t kHaierACYRW02StateLength = 14;
917 const uint16_t kHitachiAcStateLength = 28;
920 const uint16_t kHitachiAc1StateLength = 13;
922 const uint16_t kHitachiAc2StateLength = 53;
924 const uint16_t kHitachiAc3StateLength = 27;
926 const uint16_t kHitachiAc3MinStateLength = 15;
928 const uint16_t kHitachiAc344StateLength = 43;
930 const uint16_t kHitachiAc424StateLength = 53;
932 const uint16_t kInaxBits = 24;
933 const uint16_t kInaxMinRepeat = kSingleRepeat;
934 const uint16_t kJvcBits = 16;
935 const uint16_t kKelvinatorStateLength = 16;
938 const uint16_t kLasertagBits = 13;
939 const uint16_t kLasertagMinRepeat = kNoRepeat;
940 const uint16_t kLegoPfBits = 16;
941 const uint16_t kLegoPfMinRepeat = kNoRepeat;
942 const uint16_t kLgBits = 28;
943 const uint16_t kLg32Bits = 32;
944 const uint16_t kLgDefaultRepeat = kNoRepeat;
945 const uint16_t kLutronBits = 35;
946 const uint16_t kMagiquestBits = 56;
947 const uint16_t kMetzBits = 19;
948 const uint16_t kMetzMinRepeat = kNoRepeat;
949 const uint16_t kMideaBits = 48;
950 const uint16_t kMideaMinRepeat = kNoRepeat;
951 const uint16_t kMidea24Bits = 24;
953 const uint16_t kMitsubishiBits = 16;
954 // TODO(anyone): Verify that the Mitsubishi repeat is really needed.
955 // Based on marcosamarinho's code.
957 const uint16_t kMitsubishiACStateLength = 18;
960 const uint16_t kMitsubishi136StateLength = 17;
963 const uint16_t kMitsubishi112StateLength = 14;
966 const uint16_t kMitsubishiHeavy88StateLength = 11;
969 const uint16_t kMitsubishiHeavy152StateLength = 19;
972 const uint16_t kMultibracketsBits = 8;
974 const uint16_t kNikaiBits = 24;
975 const uint16_t kNECBits = 32;
976 const uint16_t kNeoclimaStateLength = 12;
977 const uint16_t kNeoclimaBits = kNeoclimaStateLength * 8;
978 const uint16_t kNeoclimaMinRepeat = kNoRepeat;
979 const uint16_t kPanasonicBits = 48;
980 const uint32_t kPanasonicManufacturer = 0x4004;
981 const uint16_t kPanasonicAcStateLength = 27;
982 const uint16_t kPanasonicAcStateShortLength = 16;
986 const uint16_t kPioneerBits = 64;
987 const uint16_t kProntoMinLength = 6;
988 const uint16_t kRC5RawBits = 14;
989 const uint16_t kRC5Bits = kRC5RawBits - 2;
990 const uint16_t kRC5XBits = kRC5RawBits - 1;
991 const uint16_t kRC6Mode0Bits = 20; // Excludes the 'start' bit.
992 const uint16_t kRC6_36Bits = 36; // Excludes the 'start' bit.
993 const uint16_t kRCMMBits = 24;
994 const uint16_t kSamsungBits = 32;
995 const uint16_t kSamsung36Bits = 36;
996 const uint16_t kSamsungAcStateLength = 14;
998 const uint16_t kSamsungAcExtendedStateLength = 21;
1001 const uint16_t kSanyoAcStateLength = 9;
1002 const uint16_t kSanyoAcBits = kSanyoAcStateLength * 8;
1003 const uint16_t kSanyoSA8650BBits = 12;
1004 const uint16_t kSanyoLC7461AddressBits = 13;
1005 const uint16_t kSanyoLC7461CommandBits = 8;
1008 const uint8_t kSharpAddressBits = 5;
1009 const uint8_t kSharpCommandBits = 8;
1010 const uint16_t kSharpBits = kSharpAddressBits + kSharpCommandBits + 2; // 15
1011 const uint16_t kSharpAcStateLength = 13;
1012 const uint16_t kSharpAcBits = kSharpAcStateLength * 8; // 104
1014 const uint8_t kSherwoodBits = kNECBits;
1016 const uint16_t kSony12Bits = 12;
1017 const uint16_t kSony15Bits = 15;
1018 const uint16_t kSony20Bits = 20;
1019 const uint16_t kSonyMinBits = 12;
1020 const uint16_t kSonyMinRepeat = 2;
1021 const uint16_t kSymphonyBits = 12;
1022 const uint16_t kSymphonyDefaultRepeat = 3;
1023 const uint16_t kTcl112AcStateLength = 14;
1026 const uint16_t kTecoBits = 35;
1028 const uint16_t kToshibaACStateLength = 9;
1035 const uint16_t kTrotecStateLength = 9;
1036 const uint16_t kTrotecBits = kTrotecStateLength * 8;
1038 const uint16_t kWhirlpoolAcStateLength = 21;
1041 const uint16_t kWhynterBits = 32;
1042 const uint8_t kVestelAcBits = 56;
1043 const uint16_t kZepealBits = 16;
1044 const uint16_t kZepealMinRepeat = 4;
1045 const uint16_t kVoltasBits = 80;
1046 const uint16_t kVoltasStateLength = 10;
1047 
1048 
1049 // Legacy defines. (Deprecated)
1050 #define AIWA_RC_T501_BITS kAiwaRcT501Bits
1051 #define ARGO_COMMAND_LENGTH kArgoStateLength
1052 #define COOLIX_BITS kCoolixBits
1053 #define CARRIER_AC_BITS kCarrierAcBits
1054 #define DAIKIN_COMMAND_LENGTH kDaikinStateLength
1055 #define DENON_BITS kDenonBits
1056 #define DENON_48_BITS kDenon48Bits
1057 #define DENON_LEGACY_BITS kDenonLegacyBits
1058 #define DISH_BITS kDishBits
1059 #define FUJITSU_AC_MIN_REPEAT kFujitsuAcMinRepeat
1060 #define FUJITSU_AC_STATE_LENGTH kFujitsuAcStateLength
1061 #define FUJITSU_AC_STATE_LENGTH_SHORT kFujitsuAcStateLengthShort
1062 #define FUJITSU_AC_BITS kFujitsuAcBits
1063 #define FUJITSU_AC_MIN_BITS kFujitsuAcMinBits
1064 #define GICABLE_BITS kGicableBits
1065 #define GREE_STATE_LENGTH kGreeStateLength
1066 #define HAIER_AC_STATE_LENGTH kHaierACStateLength
1067 #define HAIER_AC_YRW02_STATE_LENGTH kHaierACYRW02StateLength
1068 #define HITACHI_AC_STATE_LENGTH kHitachiAcStateLength
1069 #define HITACHI_AC_BITS kHitachiAcBits
1070 #define HITACHI_AC1_STATE_LENGTH kHitachiAc1StateLength
1071 #define HITACHI_AC1_BITS kHitachiAc1Bits
1072 #define HITACHI_AC2_STATE_LENGTH kHitachiAc2StateLength
1073 #define HITACHI_AC2_BITS kHitachiAc2Bits
1074 #define JVC_BITS kJvcBits
1075 #define KELVINATOR_STATE_LENGTH kKelvinatorStateLength
1076 #define LASERTAG_BITS kLasertagBits
1077 #define LG_BITS kLgBits
1078 #define LG32_BITS kLg32Bits
1079 #define MAGIQUEST_BITS kMagiquestBits
1080 #define MIDEA_BITS kMideaBits
1081 #define MITSUBISHI_BITS kMitsubishiBits
1082 #define MITSUBISHI_AC_STATE_LENGTH kMitsubishiACStateLength
1083 #define NEC_BITS kNECBits
1084 #define NIKAI_BITS kNikaiBits
1085 #define PANASONIC_BITS kPanasonicBits
1086 #define RC5_BITS kRC5Bits
1087 #define RC5X_BITS kRC5XBits
1088 #define RC6_MODE0_BITS kRC6Mode0Bits
1089 #define RC6_36_BITS kRC6_36Bits
1090 #define RCMM_BITS kRCMMBits
1091 #define SANYO_LC7461_BITS kSanyoLC7461Bits
1092 #define SAMSUNG_BITS kSamsungBits
1093 #define SANYO_SA8650B_BITS kSanyoSA8650BBits
1094 #define SHARP_BITS kSharpBits
1095 #define SHERWOOD_BITS kSherwoodBits
1096 #define SONY_12_BITS kSony12Bits
1097 #define SONY_15_BITS kSony15Bits
1098 #define SONY_20_BITS kSony20Bits
1099 #define TOSHIBA_AC_STATE_LENGTH kToshibaACStateLength
1100 #define TROTEC_COMMAND_LENGTH kTrotecStateLength
1101 #define WHYNTER_BITS kWhynterBits
1102 
1103 // Turn on Debugging information by uncommenting the following line.
1104 // #define DEBUG 1
1105 
1106 #ifdef DEBUG
1107 #ifdef UNIT_TEST
1108 #define DPRINT(x) do { std::cout << x; } while (0)
1109 #define DPRINTLN(x) do { std::cout << x << std::endl; } while (0)
1110 #endif // UNIT_TEST
1111 #ifdef ARDUINO
1112 #define DPRINT(x) do { Serial.print(x); } while (0)
1113 #define DPRINTLN(x) do { Serial.println(x); } while (0)
1114 #endif // ARDUINO
1115 #else // DEBUG
1116 #define DPRINT(x)
1117 #define DPRINTLN(x)
1118 #endif // DEBUG
1119 
1120 #ifdef UNIT_TEST
1121 #ifndef F
1122 // Create a no-op F() macro so the code base still compiles outside of the
1123 // Arduino framework. Thus we can safely use the Arduino 'F()' macro through-out
1124 // the code base. That macro stores constants in Flash (PROGMEM) memory.
1125 // See: https://github.com/crankyoldgit/IRremoteESP8266/issues/667
1126 #define F(x) x
1127 #endif // F
1128 typedef std::string String;
1129 #endif // UNIT_TEST
1130 
1131 #endif // IRREMOTEESP8266_H_
ARGO
@ ARGO
Definition: IRremoteESP8266.h:765
kDaikin152DefaultRepeat
const uint16_t kDaikin152DefaultRepeat
Definition: IRremoteESP8266.h:879
kSanyoSA8650BBits
const uint16_t kSanyoSA8650BBits
Definition: IRremoteESP8266.h:1003
kDelonghiAcBits
const uint16_t kDelonghiAcBits
Definition: IRremoteESP8266.h:886
kHaierAcYrw02DefaultRepeat
const uint16_t kHaierAcYrw02DefaultRepeat
Definition: IRremoteESP8266.h:916
kHitachiAc3MinStateLength
const uint16_t kHitachiAc3MinStateLength
Definition: IRremoteESP8266.h:926
SANYO_AC
@ SANYO_AC
Definition: IRremoteESP8266.h:827
kMitsubishiACStateLength
const uint16_t kMitsubishiACStateLength
Definition: IRremoteESP8266.h:957
kMitsubishiHeavy152StateLength
const uint16_t kMitsubishiHeavy152StateLength
Definition: IRremoteESP8266.h:969
kAirwellMinRepeats
const uint16_t kAirwellMinRepeats
Definition: IRremoteESP8266.h:839
kMideaMinRepeat
const uint16_t kMideaMinRepeat
Definition: IRremoteESP8266.h:950
kGicableBits
const uint16_t kGicableBits
Definition: IRremoteESP8266.h:904
kGreeStateLength
const uint16_t kGreeStateLength
Definition: IRremoteESP8266.h:908
DISH
@ DISH
Definition: IRremoteESP8266.h:751
UNUSED
@ UNUSED
Definition: IRremoteESP8266.h:738
decode_type_t
decode_type_t
Enumerator for defining and numbering of supported IR protocol.
Definition: IRremoteESP8266.h:736
kCarrierAcBits
const uint16_t kCarrierAcBits
Definition: IRremoteESP8266.h:851
kDenonLegacyBits
const uint16_t kDenonLegacyBits
Definition: IRremoteESP8266.h:890
SHERWOOD
@ SHERWOOD
Definition: IRremoteESP8266.h:757
kSingleRepeat
const uint16_t kSingleRepeat
Definition: IRremoteESP8266.h:836
kDaikin2DefaultRepeat
const uint16_t kDaikin2DefaultRepeat
Definition: IRremoteESP8266.h:868
kMultibracketsBits
const uint16_t kMultibracketsBits
Definition: IRremoteESP8266.h:972
kSharpAcBits
const uint16_t kSharpAcBits
Definition: IRremoteESP8266.h:1012
kWhynterBits
const uint16_t kWhynterBits
Definition: IRremoteESP8266.h:1041
CARRIER_AC
@ CARRIER_AC
Definition: IRremoteESP8266.h:775
TOSHIBA_AC
@ TOSHIBA_AC
Definition: IRremoteESP8266.h:770
AIRWELL
@ AIRWELL
Definition: IRremoteESP8266.h:817
kAirwellBits
const uint16_t kAirwellBits
Definition: IRremoteESP8266.h:838
kHaierAcDefaultRepeat
const uint16_t kHaierAcDefaultRepeat
Definition: IRremoteESP8266.h:913
PRONTO
@ PRONTO
Definition: IRremoteESP8266.h:763
kTrotecDefaultRepeat
const uint16_t kTrotecDefaultRepeat
Definition: IRremoteESP8266.h:1037
kFujitsuAcMinRepeat
const uint16_t kFujitsuAcMinRepeat
Definition: IRremoteESP8266.h:899
kCoronaAcBits
const uint16_t kCoronaAcBits
Definition: IRremoteESP8266.h:860
kMitsubishiACBits
const uint16_t kMitsubishiACBits
Definition: IRremoteESP8266.h:958
kMitsubishi136MinRepeat
const uint16_t kMitsubishi136MinRepeat
Definition: IRremoteESP8266.h:962
UNKNOWN
@ UNKNOWN
Definition: IRremoteESP8266.h:737
kArgoDefaultRepeat
const uint16_t kArgoDefaultRepeat
Definition: IRremoteESP8266.h:848
kVoltasBits
const uint16_t kVoltasBits
Definition: IRremoteESP8266.h:1045
kHaierACStateLength
const uint16_t kHaierACStateLength
Definition: IRremoteESP8266.h:911
kHitachiAcStateLength
const uint16_t kHitachiAcStateLength
Definition: IRremoteESP8266.h:917
MITSUBISHI112
@ MITSUBISHI112
Definition: IRremoteESP8266.h:810
kDaikin176StateLength
const uint16_t kDaikin176StateLength
Definition: IRremoteESP8266.h:880
kRC5XBits
const uint16_t kRC5XBits
Definition: IRremoteESP8266.h:990
kEpsonMinRepeat
const uint16_t kEpsonMinRepeat
Definition: IRremoteESP8266.h:895
kAmcorStateLength
const uint16_t kAmcorStateLength
Definition: IRremoteESP8266.h:843
DAIKIN128
@ DAIKIN128
Definition: IRremoteESP8266.h:806
kAlokaBits
const uint16_t kAlokaBits
Definition: IRremoteESP8266.h:842
JVC
@ JVC
Definition: IRremoteESP8266.h:744
SONY
@ SONY
Definition: IRremoteESP8266.h:742
HITACHI_AC2
@ HITACHI_AC2
Definition: IRremoteESP8266.h:780
kHitachiAc1StateLength
const uint16_t kHitachiAc1StateLength
Definition: IRremoteESP8266.h:920
kCoolixBits
const uint16_t kCoolixBits
Definition: IRremoteESP8266.h:849
kMitsubishi112MinRepeat
const uint16_t kMitsubishi112MinRepeat
Definition: IRremoteESP8266.h:965
kCoronaAcBitsShort
const uint16_t kCoronaAcBitsShort
Definition: IRremoteESP8266.h:859
kSamsung36Bits
const uint16_t kSamsung36Bits
Definition: IRremoteESP8266.h:995
kMagiquestBits
const uint16_t kMagiquestBits
Definition: IRremoteESP8266.h:946
LUTRON
@ LUTRON
Definition: IRremoteESP8266.h:785
kSharpCommandBits
const uint8_t kSharpCommandBits
Definition: IRremoteESP8266.h:1009
kNeoclimaStateLength
const uint16_t kNeoclimaStateLength
Definition: IRremoteESP8266.h:976
RCMM
@ RCMM
Definition: IRremoteESP8266.h:759
SANYO_LC7461
@ SANYO_LC7461
Definition: IRremoteESP8266.h:760
TROTEC
@ TROTEC
Definition: IRremoteESP8266.h:766
kFujitsuAcMinBits
const uint16_t kFujitsuAcMinBits
Definition: IRremoteESP8266.h:903
kSamsungAcDefaultRepeat
const uint16_t kSamsungAcDefaultRepeat
Definition: IRremoteESP8266.h:1000
kSanyoLC7461Bits
const uint16_t kSanyoLC7461Bits
Definition: IRremoteESP8266.h:1006
DAIKIN160
@ DAIKIN160
Definition: IRremoteESP8266.h:803
CORONA_AC
@ CORONA_AC
Definition: IRremoteESP8266.h:824
kSanyoLC7461CommandBits
const uint16_t kSanyoLC7461CommandBits
Definition: IRremoteESP8266.h:1005
kTrotecBits
const uint16_t kTrotecBits
Definition: IRremoteESP8266.h:1036
PANASONIC
@ PANASONIC
Definition: IRremoteESP8266.h:743
kZepealMinRepeat
const uint16_t kZepealMinRepeat
Definition: IRremoteESP8266.h:1044
kMetzMinRepeat
const uint16_t kMetzMinRepeat
Definition: IRremoteESP8266.h:948
kDenon48Bits
const uint16_t kDenon48Bits
Definition: IRremoteESP8266.h:889
DAIKIN2
@ DAIKIN2
Definition: IRremoteESP8266.h:791
kHitachiAc2Bits
const uint16_t kHitachiAc2Bits
Definition: IRremoteESP8266.h:923
kElectraAcMinRepeat
const uint16_t kElectraAcMinRepeat
Definition: IRremoteESP8266.h:898
kToshibaACBitsLong
const uint16_t kToshibaACBitsLong
Definition: IRremoteESP8266.h:1034
MITSUBISHI_AC
@ MITSUBISHI_AC
Definition: IRremoteESP8266.h:758
MAGIQUEST
@ MAGIQUEST
Definition: IRremoteESP8266.h:773
kHitachiAc3StateLength
const uint16_t kHitachiAc3StateLength
Definition: IRremoteESP8266.h:924
kLg32Bits
const uint16_t kLg32Bits
Definition: IRremoteESP8266.h:943
DOSHISHA
@ DOSHISHA
Definition: IRremoteESP8266.h:819
kCoronaAcStateLengthShort
const uint16_t kCoronaAcStateLengthShort
Definition: IRremoteESP8266.h:857
kElectraAcBits
const uint16_t kElectraAcBits
Definition: IRremoteESP8266.h:897
kSonyMinBits
const uint16_t kSonyMinBits
Definition: IRremoteESP8266.h:1019
HAIER_AC_YRW02
@ HAIER_AC_YRW02
Definition: IRremoteESP8266.h:782
kAiwaRcT501MinRepeats
const uint16_t kAiwaRcT501MinRepeats
Definition: IRremoteESP8266.h:841
HITACHI_AC424
@ HITACHI_AC424
Definition: IRremoteESP8266.h:811
kVoltasStateLength
const uint16_t kVoltasStateLength
Definition: IRremoteESP8266.h:1046
kDaikin2Bits
const uint16_t kDaikin2Bits
Definition: IRremoteESP8266.h:867
kHitachiAc1Bits
const uint16_t kHitachiAc1Bits
Definition: IRremoteESP8266.h:921
CARRIER_AC64
@ CARRIER_AC64
Definition: IRremoteESP8266.h:822
NEC
@ NEC
Definition: IRremoteESP8266.h:741
FUJITSU_AC
@ FUJITSU_AC
Definition: IRremoteESP8266.h:771
kMitsubishiMinRepeat
const uint16_t kMitsubishiMinRepeat
Definition: IRremoteESP8266.h:956
GOODWEATHER
@ GOODWEATHER
Definition: IRremoteESP8266.h:801
HITACHI_AC3
@ HITACHI_AC3
Definition: IRremoteESP8266.h:815
INAX
@ INAX
Definition: IRremoteESP8266.h:802
kArgoStateLength
const uint16_t kArgoStateLength
Definition: IRremoteESP8266.h:846
SYMPHONY
@ SYMPHONY
Definition: IRremoteESP8266.h:814
kPanasonicBits
const uint16_t kPanasonicBits
Definition: IRremoteESP8266.h:979
String
std::string String
Definition: IRremoteESP8266.h:1128
HAIER_AC
@ HAIER_AC
Definition: IRremoteESP8266.h:776
kDaikinStateLengthShort
const uint16_t kDaikinStateLengthShort
Definition: IRremoteESP8266.h:863
kRC5Bits
const uint16_t kRC5Bits
Definition: IRremoteESP8266.h:989
kLgDefaultRepeat
const uint16_t kLgDefaultRepeat
Definition: IRremoteESP8266.h:944
kDaikin152StateLength
const uint16_t kDaikin152StateLength
Definition: IRremoteESP8266.h:877
kPanasonicAcBits
const uint16_t kPanasonicAcBits
Definition: IRremoteESP8266.h:983
kRC5RawBits
const uint16_t kRC5RawBits
Definition: IRremoteESP8266.h:988
kHaierACYRW02StateLength
const uint16_t kHaierACYRW02StateLength
Definition: IRremoteESP8266.h:914
kSanyoLC7461AddressBits
const uint16_t kSanyoLC7461AddressBits
Definition: IRremoteESP8266.h:1004
kMultibracketsDefaultRepeat
const uint16_t kMultibracketsDefaultRepeat
Definition: IRremoteESP8266.h:973
LG
@ LG
Definition: IRremoteESP8266.h:748
kDaikin160Bits
const uint16_t kDaikin160Bits
Definition: IRremoteESP8266.h:872
HITACHI_AC344
@ HITACHI_AC344
Definition: IRremoteESP8266.h:823
MIDEA
@ MIDEA
Definition: IRremoteESP8266.h:772
kGoodweatherBits
const uint16_t kGoodweatherBits
Definition: IRremoteESP8266.h:906
kGicableMinRepeat
const uint16_t kGicableMinRepeat
Definition: IRremoteESP8266.h:905
GLOBALCACHE
@ GLOBALCACHE
Definition: IRremoteESP8266.h:769
kDaikin152Bits
const uint16_t kDaikin152Bits
Definition: IRremoteESP8266.h:878
kDaikin216StateLength
const uint16_t kDaikin216StateLength
Definition: IRremoteESP8266.h:883
GICABLE
@ GICABLE
Definition: IRremoteESP8266.h:781
kSamsungAcStateLength
const uint16_t kSamsungAcStateLength
Definition: IRremoteESP8266.h:996
COOLIX
@ COOLIX
Definition: IRremoteESP8266.h:753
METZ
@ METZ
Definition: IRremoteESP8266.h:829
MIDEA24
@ MIDEA24
Definition: IRremoteESP8266.h:825
kSymphonyBits
const uint16_t kSymphonyBits
Definition: IRremoteESP8266.h:1021
kDaikin128StateLength
const uint16_t kDaikin128StateLength
Definition: IRremoteESP8266.h:874
kRC6Mode0Bits
const uint16_t kRC6Mode0Bits
Definition: IRremoteESP8266.h:991
NEOCLIMA
@ NEOCLIMA
Definition: IRremoteESP8266.h:804
kDaikin176DefaultRepeat
const uint16_t kDaikin176DefaultRepeat
Definition: IRremoteESP8266.h:882
kMitsubishiHeavy152MinRepeat
const uint16_t kMitsubishiHeavy152MinRepeat
Definition: IRremoteESP8266.h:971
kSony12Bits
const uint16_t kSony12Bits
Definition: IRremoteESP8266.h:1016
kNoRepeat
const uint16_t kNoRepeat
Definition: IRremoteESP8266.h:835
kSony20Bits
const uint16_t kSony20Bits
Definition: IRremoteESP8266.h:1018
kMitsubishiACMinRepeat
const uint16_t kMitsubishiACMinRepeat
Definition: IRremoteESP8266.h:959
MULTIBRACKETS
@ MULTIBRACKETS
Definition: IRremoteESP8266.h:820
kMetzBits
const uint16_t kMetzBits
Definition: IRremoteESP8266.h:947
kHitachiAc3MinBits
const uint16_t kHitachiAc3MinBits
Definition: IRremoteESP8266.h:927
kPanasonicAcDefaultRepeat
const uint16_t kPanasonicAcDefaultRepeat
Definition: IRremoteESP8266.h:985
kSymphonyDefaultRepeat
const uint16_t kSymphonyDefaultRepeat
Definition: IRremoteESP8266.h:1022
kSamsungAcExtendedStateLength
const uint16_t kSamsungAcExtendedStateLength
Definition: IRremoteESP8266.h:998
kCoolixDefaultRepeat
const uint16_t kCoolixDefaultRepeat
Definition: IRremoteESP8266.h:850
DENON
@ DENON
Definition: IRremoteESP8266.h:755
kTcl112AcDefaultRepeat
const uint16_t kTcl112AcDefaultRepeat
Definition: IRremoteESP8266.h:1025
kDelonghiAcDefaultRepeat
const uint16_t kDelonghiAcDefaultRepeat
Definition: IRremoteESP8266.h:887
kCoronaAcStateLength
const uint16_t kCoronaAcStateLength
Definition: IRremoteESP8266.h:858
SANYO
@ SANYO
Definition: IRremoteESP8266.h:749
kTecoDefaultRepeat
const uint16_t kTecoDefaultRepeat
Definition: IRremoteESP8266.h:1027
kMitsubishiHeavy152Bits
const uint16_t kMitsubishiHeavy152Bits
Definition: IRremoteESP8266.h:970
kDoshishaBits
const uint16_t kDoshishaBits
Definition: IRremoteESP8266.h:893
kCarrierAc40Bits
const uint16_t kCarrierAc40Bits
Definition: IRremoteESP8266.h:853
kAmcorBits
const uint16_t kAmcorBits
Definition: IRremoteESP8266.h:844
kTrotecStateLength
const uint16_t kTrotecStateLength
Definition: IRremoteESP8266.h:1035
LG2
@ LG2
Definition: IRremoteESP8266.h:789
kWhirlpoolAcDefaultRepeat
const uint16_t kWhirlpoolAcDefaultRepeat
Definition: IRremoteESP8266.h:1040
kHitachiAc424StateLength
const uint16_t kHitachiAc424StateLength
Definition: IRremoteESP8266.h:930
kMitsubishiHeavy88StateLength
const uint16_t kMitsubishiHeavy88StateLength
Definition: IRremoteESP8266.h:966
RC5X
@ RC5X
Definition: IRremoteESP8266.h:761
LASERTAG
@ LASERTAG
Definition: IRremoteESP8266.h:774
kFujitsuAcStateLengthShort
const uint16_t kFujitsuAcStateLengthShort
Definition: IRremoteESP8266.h:901
kPanasonicManufacturer
const uint32_t kPanasonicManufacturer
Definition: IRremoteESP8266.h:980
RAW
@ RAW
Definition: IRremoteESP8266.h:768
kMitsubishiBits
const uint16_t kMitsubishiBits
Definition: IRremoteESP8266.h:953
SONY_38K
@ SONY_38K
Definition: IRremoteESP8266.h:812
RC6
@ RC6
Definition: IRremoteESP8266.h:740
PIONEER
@ PIONEER
Definition: IRremoteESP8266.h:788
kPanasonicAcStateLength
const uint16_t kPanasonicAcStateLength
Definition: IRremoteESP8266.h:981
MITSUBISHI2
@ MITSUBISHI2
Definition: IRremoteESP8266.h:777
kFujitsuAcStateLength
const uint16_t kFujitsuAcStateLength
Definition: IRremoteESP8266.h:900
kSamsungAcBits
const uint16_t kSamsungAcBits
Definition: IRremoteESP8266.h:997
kMideaBits
const uint16_t kMideaBits
Definition: IRremoteESP8266.h:949
kKelvinatorStateLength
const uint16_t kKelvinatorStateLength
Definition: IRremoteESP8266.h:935
kKelvinatorBits
const uint16_t kKelvinatorBits
Definition: IRremoteESP8266.h:936
LEGOPF
@ LEGOPF
Definition: IRremoteESP8266.h:796
WHYNTER
@ WHYNTER
Definition: IRremoteESP8266.h:746
kDaikin216DefaultRepeat
const uint16_t kDaikin216DefaultRepeat
Definition: IRremoteESP8266.h:885
AMCOR
@ AMCOR
Definition: IRremoteESP8266.h:807
kWhirlpoolAcStateLength
const uint16_t kWhirlpoolAcStateLength
Definition: IRremoteESP8266.h:1038
kNECBits
const uint16_t kNECBits
Definition: IRremoteESP8266.h:975
kDenonBits
const uint16_t kDenonBits
Definition: IRremoteESP8266.h:888
kHaierACBits
const uint16_t kHaierACBits
Definition: IRremoteESP8266.h:912
kZepealBits
const uint16_t kZepealBits
Definition: IRremoteESP8266.h:1043
TCL112AC
@ TCL112AC
Definition: IRremoteESP8266.h:795
kSony15Bits
const uint16_t kSony15Bits
Definition: IRremoteESP8266.h:1017
kCarrierAc40MinRepeat
const uint16_t kCarrierAc40MinRepeat
Definition: IRremoteESP8266.h:854
kMidea24Bits
const uint16_t kMidea24Bits
Definition: IRremoteESP8266.h:951
kDaikin160DefaultRepeat
const uint16_t kDaikin160DefaultRepeat
Definition: IRremoteESP8266.h:873
kToshibaACMinRepeat
const uint16_t kToshibaACMinRepeat
Definition: IRremoteESP8266.h:1030
kSamsungAcExtendedBits
const uint16_t kSamsungAcExtendedBits
Definition: IRremoteESP8266.h:999
kHitachiAc344StateLength
const uint16_t kHitachiAc344StateLength
Definition: IRremoteESP8266.h:928
kNeoclimaBits
const uint16_t kNeoclimaBits
Definition: IRremoteESP8266.h:977
kWhirlpoolAcBits
const uint16_t kWhirlpoolAcBits
Definition: IRremoteESP8266.h:1039
kHitachiAc344Bits
const uint16_t kHitachiAc344Bits
Definition: IRremoteESP8266.h:929
kRC6_36Bits
const uint16_t kRC6_36Bits
Definition: IRremoteESP8266.h:992
DAIKIN176
@ DAIKIN176
Definition: IRremoteESP8266.h:805
kCarrierAc64Bits
const uint16_t kCarrierAc64Bits
Definition: IRremoteESP8266.h:855
kDaikin128DefaultRepeat
const uint16_t kDaikin128DefaultRepeat
Definition: IRremoteESP8266.h:876
kPioneerBits
const uint16_t kPioneerBits
Definition: IRremoteESP8266.h:986
kSharpAcStateLength
const uint16_t kSharpAcStateLength
Definition: IRremoteESP8266.h:1011
MITSUBISHI_HEAVY_88
@ MITSUBISHI_HEAVY_88
Definition: IRremoteESP8266.h:797
kGreeBits
const uint16_t kGreeBits
Definition: IRremoteESP8266.h:909
kJvcBits
const uint16_t kJvcBits
Definition: IRremoteESP8266.h:934
kDaikinStateLength
const uint16_t kDaikinStateLength
Definition: IRremoteESP8266.h:861
kLasertagBits
const uint16_t kLasertagBits
Definition: IRremoteESP8266.h:938
kDaikin128Bits
const uint16_t kDaikin128Bits
Definition: IRremoteESP8266.h:875
kAiwaRcT501Bits
const uint16_t kAiwaRcT501Bits
Definition: IRremoteESP8266.h:840
kToshibaACStateLength
const uint16_t kToshibaACStateLength
Definition: IRremoteESP8266.h:1028
kTecoBits
const uint16_t kTecoBits
Definition: IRremoteESP8266.h:1026
kInaxMinRepeat
const uint16_t kInaxMinRepeat
Definition: IRremoteESP8266.h:933
kPanasonicAcStateShortLength
const uint16_t kPanasonicAcStateShortLength
Definition: IRremoteESP8266.h:982
CARRIER_AC40
@ CARRIER_AC40
Definition: IRremoteESP8266.h:821
kToshibaACBits
const uint16_t kToshibaACBits
Definition: IRremoteESP8266.h:1029
kSherwoodBits
const uint8_t kSherwoodBits
Definition: IRremoteESP8266.h:1014
DAIKIN152
@ DAIKIN152
Definition: IRremoteESP8266.h:808
NEC_LIKE
@ NEC_LIKE
Definition: IRremoteESP8266.h:764
kDaikinDefaultRepeat
const uint16_t kDaikinDefaultRepeat
Definition: IRremoteESP8266.h:865
kDaikin64DefaultRepeat
const uint16_t kDaikin64DefaultRepeat
Definition: IRremoteESP8266.h:870
SAMSUNG
@ SAMSUNG
Definition: IRremoteESP8266.h:745
AIWA_RC_T501
@ AIWA_RC_T501
Definition: IRremoteESP8266.h:747
MITSUBISHI_HEAVY_152
@ MITSUBISHI_HEAVY_152
Definition: IRremoteESP8266.h:798
VESTEL_AC
@ VESTEL_AC
Definition: IRremoteESP8266.h:792
kDaikinBits
const uint16_t kDaikinBits
Definition: IRremoteESP8266.h:862
kToshibaACStateLengthShort
const uint16_t kToshibaACStateLengthShort
Definition: IRremoteESP8266.h:1031
GREE
@ GREE
Definition: IRremoteESP8266.h:762
kToshibaACStateLengthLong
const uint16_t kToshibaACStateLengthLong
Definition: IRremoteESP8266.h:1033
kHitachiAcBits
const uint16_t kHitachiAcBits
Definition: IRremoteESP8266.h:918
kMitsubishiHeavy88MinRepeat
const uint16_t kMitsubishiHeavy88MinRepeat
Definition: IRremoteESP8266.h:968
kHitachiAc3Bits
const uint16_t kHitachiAc3Bits
Definition: IRremoteESP8266.h:925
kHitachiAcDefaultRepeat
const uint16_t kHitachiAcDefaultRepeat
Definition: IRremoteESP8266.h:919
NIKAI
@ NIKAI
Definition: IRremoteESP8266.h:767
kMidea24MinRepeat
const uint16_t kMidea24MinRepeat
Definition: IRremoteESP8266.h:952
kDishBits
const uint16_t kDishBits
Definition: IRremoteESP8266.h:891
WHIRLPOOL_AC
@ WHIRLPOOL_AC
Definition: IRremoteESP8266.h:783
kDishMinRepeat
const uint16_t kDishMinRepeat
Definition: IRremoteESP8266.h:892
kFujitsuAcBits
const uint16_t kFujitsuAcBits
Definition: IRremoteESP8266.h:902
kArgoBits
const uint16_t kArgoBits
Definition: IRremoteESP8266.h:847
RC5
@ RC5
Definition: IRremoteESP8266.h:739
kHitachiAc2StateLength
const uint16_t kHitachiAc2StateLength
Definition: IRremoteESP8266.h:922
HITACHI_AC
@ HITACHI_AC
Definition: IRremoteESP8266.h:778
SHARP_AC
@ SHARP_AC
Definition: IRremoteESP8266.h:800
HITACHI_AC1
@ HITACHI_AC1
Definition: IRremoteESP8266.h:779
kMitsubishiHeavy88Bits
const uint16_t kMitsubishiHeavy88Bits
Definition: IRremoteESP8266.h:967
kCarrierAcMinRepeat
const uint16_t kCarrierAcMinRepeat
Definition: IRremoteESP8266.h:852
ZEPEAL
@ ZEPEAL
Definition: IRremoteESP8266.h:826
kNikaiBits
const uint16_t kNikaiBits
Definition: IRremoteESP8266.h:974
kKelvinatorDefaultRepeat
const uint16_t kKelvinatorDefaultRepeat
Definition: IRremoteESP8266.h:937
kLutronBits
const uint16_t kLutronBits
Definition: IRremoteESP8266.h:945
kSharpAcDefaultRepeat
const uint16_t kSharpAcDefaultRepeat
Definition: IRremoteESP8266.h:1013
MITSUBISHI136
@ MITSUBISHI136
Definition: IRremoteESP8266.h:809
kTcl112AcStateLength
const uint16_t kTcl112AcStateLength
Definition: IRremoteESP8266.h:1023
kDaikin160StateLength
const uint16_t kDaikin160StateLength
Definition: IRremoteESP8266.h:871
kDaikin2StateLength
const uint16_t kDaikin2StateLength
Definition: IRremoteESP8266.h:866
kHaierACYRW02Bits
const uint16_t kHaierACYRW02Bits
Definition: IRremoteESP8266.h:915
kSherwoodMinRepeat
const uint16_t kSherwoodMinRepeat
Definition: IRremoteESP8266.h:1015
kCarrierAc64MinRepeat
const uint16_t kCarrierAc64MinRepeat
Definition: IRremoteESP8266.h:856
MWM
@ MWM
Definition: IRremoteESP8266.h:790
kHitachiAc424Bits
const uint16_t kHitachiAc424Bits
Definition: IRremoteESP8266.h:931
kPanasonicAcShortBits
const uint16_t kPanasonicAcShortBits
Definition: IRremoteESP8266.h:984
DAIKIN
@ DAIKIN
Definition: IRremoteESP8266.h:754
DELONGHI_AC
@ DELONGHI_AC
Definition: IRremoteESP8266.h:818
kSanyoAcStateLength
const uint16_t kSanyoAcStateLength
Definition: IRremoteESP8266.h:1001
EPSON
@ EPSON
Definition: IRremoteESP8266.h:813
kLegoPfBits
const uint16_t kLegoPfBits
Definition: IRremoteESP8266.h:940
kSharpBits
const uint16_t kSharpBits
Definition: IRremoteESP8266.h:1010
kLastDecodeType
@ kLastDecodeType
Definition: IRremoteESP8266.h:831
SAMSUNG_AC
@ SAMSUNG_AC
Definition: IRremoteESP8266.h:784
kDaikinBitsShort
const uint16_t kDaikinBitsShort
Definition: IRremoteESP8266.h:864
DAIKIN216
@ DAIKIN216
Definition: IRremoteESP8266.h:799
PANASONIC_AC
@ PANASONIC_AC
Definition: IRremoteESP8266.h:787
kProntoMinLength
const uint16_t kProntoMinLength
Definition: IRremoteESP8266.h:987
kMitsubishi136StateLength
const uint16_t kMitsubishi136StateLength
Definition: IRremoteESP8266.h:960
DAIKIN64
@ DAIKIN64
Definition: IRremoteESP8266.h:816
kToshibaACBitsShort
const uint16_t kToshibaACBitsShort
Definition: IRremoteESP8266.h:1032
kRCMMBits
const uint16_t kRCMMBits
Definition: IRremoteESP8266.h:993
kVestelAcBits
const uint8_t kVestelAcBits
Definition: IRremoteESP8266.h:1042
SAMSUNG36
@ SAMSUNG36
Definition: IRremoteESP8266.h:794
kSharpAddressBits
const uint8_t kSharpAddressBits
Definition: IRremoteESP8266.h:1008
kInaxBits
const uint16_t kInaxBits
Definition: IRremoteESP8266.h:932
kLegoPfMinRepeat
const uint16_t kLegoPfMinRepeat
Definition: IRremoteESP8266.h:941
kDaikin176Bits
const uint16_t kDaikin176Bits
Definition: IRremoteESP8266.h:881
kAmcorDefaultRepeat
const uint16_t kAmcorDefaultRepeat
Definition: IRremoteESP8266.h:845
KELVINATOR
@ KELVINATOR
Definition: IRremoteESP8266.h:756
VOLTAS
@ VOLTAS
Definition: IRremoteESP8266.h:828
kSamsungBits
const uint16_t kSamsungBits
Definition: IRremoteESP8266.h:994
kDaikin64Bits
const uint16_t kDaikin64Bits
Definition: IRremoteESP8266.h:869
kTcl112AcBits
const uint16_t kTcl112AcBits
Definition: IRremoteESP8266.h:1024
TECO
@ TECO
Definition: IRremoteESP8266.h:793
kLasertagMinRepeat
const uint16_t kLasertagMinRepeat
Definition: IRremoteESP8266.h:939
SHARP
@ SHARP
Definition: IRremoteESP8266.h:752
MITSUBISHI
@ MITSUBISHI
Definition: IRremoteESP8266.h:750
ELECTRA_AC
@ ELECTRA_AC
Definition: IRremoteESP8266.h:786
kDaikin216Bits
const uint16_t kDaikin216Bits
Definition: IRremoteESP8266.h:884
kMitsubishi136Bits
const uint16_t kMitsubishi136Bits
Definition: IRremoteESP8266.h:961
kNeoclimaMinRepeat
const uint16_t kNeoclimaMinRepeat
Definition: IRremoteESP8266.h:978
kMitsubishi112StateLength
const uint16_t kMitsubishi112StateLength
Definition: IRremoteESP8266.h:963
kSanyoAcBits
const uint16_t kSanyoAcBits
Definition: IRremoteESP8266.h:1002
kMitsubishi112Bits
const uint16_t kMitsubishi112Bits
Definition: IRremoteESP8266.h:964
kSonyMinRepeat
const uint16_t kSonyMinRepeat
Definition: IRremoteESP8266.h:1020
kEpsonBits
const uint16_t kEpsonBits
Definition: IRremoteESP8266.h:894
kLgBits
const uint16_t kLgBits
Definition: IRremoteESP8266.h:942
kGoodweatherMinRepeat
const uint16_t kGoodweatherMinRepeat
Definition: IRremoteESP8266.h:907
kElectraAcStateLength
const uint16_t kElectraAcStateLength
Definition: IRremoteESP8266.h:896
kGreeDefaultRepeat
const uint16_t kGreeDefaultRepeat
Definition: IRremoteESP8266.h:910