IRremoteESP8266
IRrecv.h
Go to the documentation of this file.
1 // Copyright 2009 Ken Shirriff
2 // Copyright 2015 Mark Szabo
3 // Copyright 2015 Sebastien Warin
4 // Copyright 2017 David Conran
5 
6 #ifndef IRRECV_H_
7 #define IRRECV_H_
8 
9 #ifndef UNIT_TEST
10 #include <Arduino.h>
11 #endif
12 #include <stddef.h>
13 #define __STDC_LIMIT_MACROS
14 #include <stdint.h>
15 #include "IRremoteESP8266.h"
16 
17 // Constants
18 const uint16_t kHeader = 2; // Usual nr. of header entries.
19 const uint16_t kFooter = 2; // Usual nr. of footer (stop bits) entries.
20 const uint16_t kStartOffset = 1; // Usual rawbuf entry to start from.
21 #define MS_TO_USEC(x) (x * 1000U) // Convert milli-Seconds to micro-Seconds.
22 // Marks tend to be 100us too long, and spaces 100us too short
23 // when received due to sensor lag.
24 const uint16_t kMarkExcess = 50;
25 const uint16_t kRawBuf = 100; // Default length of raw capture buffer
26 const uint64_t kRepeat = UINT64_MAX;
27 // Default min size of reported UNKNOWN messages.
28 const uint16_t kUnknownThreshold = 6;
29 
30 // receiver states
31 const uint8_t kIdleState = 2;
32 const uint8_t kMarkState = 3;
33 const uint8_t kSpaceState = 4;
34 const uint8_t kStopState = 5;
35 const uint8_t kTolerance = 25; // default percent tolerance in measurements.
36 const uint8_t kUseDefTol = 255; // Indicate to use the class default tolerance.
37 const uint16_t kRawTick = 2; // Capture tick to uSec factor.
38 #define RAWTICK kRawTick // Deprecated. For legacy user code support only.
39 // How long (ms) before we give up wait for more data?
40 // Don't exceed kMaxTimeoutMs without a good reason.
41 // That is the capture buffers maximum value size. (UINT16_MAX / kRawTick)
42 // Typically messages/protocols tend to repeat around the 100ms timeframe,
43 // thus we should timeout before that to give us some time to try to decode
44 // before we need to start capturing a possible new message.
45 // Typically 15ms suits most applications. However, some protocols demand a
46 // higher value. e.g. 90ms for XMP-1 and some aircon units.
47 const uint8_t kTimeoutMs = 15; // In MilliSeconds.
48 #define TIMEOUT_MS kTimeoutMs // For legacy documentation.
49 const uint16_t kMaxTimeoutMs = kRawTick * (UINT16_MAX / MS_TO_USEC(1));
50 
51 // Use FNV hash algorithm: http://isthe.com/chongo/tech/comp/fnv/#FNV-param
52 const uint32_t kFnvPrime32 = 16777619UL;
53 const uint32_t kFnvBasis32 = 2166136261UL;
54 
55 // Which of the ESP32 timers to use by default. (0-3)
56 const uint8_t kDefaultESP32Timer = 3;
57 
58 #if DECODE_AC
59 // Hitachi AC is the current largest state size.
61 #else
62 // Just define something
63 const uint16_t kStateSizeMax = 0;
64 #endif
65 
66 // Types
67 
69 typedef struct {
70  uint8_t recvpin; // pin for IR data from detector
71  uint8_t rcvstate; // state machine
72  uint16_t timer; // state timer, counts 50uS ticks.
73  uint16_t bufsize; // max. nr. of entries in the capture buffer.
74  uint16_t *rawbuf; // raw data
75  // uint16_t is used for rawlen as it saves 3 bytes of iram in the interrupt
76  // handler. Don't ask why, I don't know. It just does.
77  uint16_t rawlen; // counter of entries in rawbuf.
78  uint8_t overflow; // Buffer overflow indicator.
79  uint8_t timeout; // Nr. of milliSeconds before we give up.
80 } irparams_t;
81 
83 typedef struct {
84  bool success; // Was the match successful?
85  uint64_t data; // The data found.
86  uint16_t used; // How many buffer positions were used.
88 
89 // Classes
90 
93  public:
94  decode_type_t decode_type; // NEC, SONY, RC5, UNKNOWN
95  // value, address, & command are all mutually exclusive with state.
96  // i.e. They MUST NOT be used at the same time as state, so we can use a union
97  // structure to save us a handful of valuable bytes of memory.
98  union {
99  struct {
100  uint64_t value; // Decoded value
101  uint32_t address; // Decoded device address.
102  uint32_t command; // Decoded command.
103  };
104  uint8_t state[kStateSizeMax]; // Multi-byte results.
105  };
106  uint16_t bits; // Number of bits in decoded value
107  volatile uint16_t *rawbuf; // Raw intervals in .5 us ticks
108  uint16_t rawlen; // Number of records in rawbuf.
109  bool overflow;
110  bool repeat; // Is the result a repeat code?
111 };
112 
114 class IRrecv {
115  public:
116 #if defined(ESP32)
117  explicit IRrecv(const uint16_t recvpin, const uint16_t bufsize = kRawBuf,
118  const uint8_t timeout = kTimeoutMs,
119  const bool save_buffer = false,
120  const uint8_t timer_num = kDefaultESP32Timer); // Constructor
121 #else // ESP32
122  explicit IRrecv(const uint16_t recvpin, const uint16_t bufsize = kRawBuf,
123  const uint8_t timeout = kTimeoutMs,
124  const bool save_buffer = false); // Constructor
125 #endif // ESP32
126  ~IRrecv(void); // Destructor
127  void setTolerance(const uint8_t percent = kTolerance);
128  uint8_t getTolerance(void);
129  bool decode(decode_results *results, irparams_t *save = NULL,
130  uint8_t max_skip = 0, uint16_t noise_floor = 0);
131  void enableIRIn(const bool pullup = false);
132  void disableIRIn(void);
133  void resume(void);
134  uint16_t getBufSize(void);
135 #if DECODE_HASH
136  void setUnknownThreshold(const uint16_t length);
137 #endif
138  bool match(const uint32_t measured, const uint32_t desired,
139  const uint8_t tolerance = kUseDefTol,
140  const uint16_t delta = 0);
141  bool matchMark(const uint32_t measured, const uint32_t desired,
142  const uint8_t tolerance = kUseDefTol,
143  const int16_t excess = kMarkExcess);
144  bool matchSpace(const uint32_t measured, const uint32_t desired,
145  const uint8_t tolerance = kUseDefTol,
146  const int16_t excess = kMarkExcess);
147 #ifndef UNIT_TEST
148 
149  private:
150 #endif
152  uint8_t _tolerance;
153 #if defined(ESP32)
154  uint8_t _timer_num;
155 #endif // defined(ESP32)
156 #if DECODE_HASH
158 #endif
159  // These are called by decode
160  uint8_t _validTolerance(const uint8_t percentage);
161  void copyIrParams(volatile irparams_t *src, irparams_t *dst);
162  uint16_t compare(const uint16_t oldval, const uint16_t newval);
163  uint32_t ticksLow(const uint32_t usecs,
164  const uint8_t tolerance = kUseDefTol,
165  const uint16_t delta = 0);
166  uint32_t ticksHigh(const uint32_t usecs,
167  const uint8_t tolerance = kUseDefTol,
168  const uint16_t delta = 0);
169  bool matchAtLeast(const uint32_t measured, const uint32_t desired,
170  const uint8_t tolerance = kUseDefTol,
171  const uint16_t delta = 0);
172  uint16_t _matchGeneric(volatile uint16_t *data_ptr,
173  uint64_t *result_bits_ptr,
174  uint8_t *result_ptr,
175  const bool use_bits,
176  const uint16_t remaining,
177  const uint16_t required,
178  const uint16_t hdrmark,
179  const uint32_t hdrspace,
180  const uint16_t onemark,
181  const uint32_t onespace,
182  const uint16_t zeromark,
183  const uint32_t zerospace,
184  const uint16_t footermark,
185  const uint32_t footerspace,
186  const bool atleast = false,
187  const uint8_t tolerance = kUseDefTol,
188  const int16_t excess = kMarkExcess,
189  const bool MSBfirst = true);
190  match_result_t matchData(volatile uint16_t *data_ptr, const uint16_t nbits,
191  const uint16_t onemark, const uint32_t onespace,
192  const uint16_t zeromark, const uint32_t zerospace,
193  const uint8_t tolerance = kUseDefTol,
194  const int16_t excess = kMarkExcess,
195  const bool MSBfirst = true);
196  uint16_t matchBytes(volatile uint16_t *data_ptr, uint8_t *result_ptr,
197  const uint16_t remaining, const uint16_t nbytes,
198  const uint16_t onemark, const uint32_t onespace,
199  const uint16_t zeromark, const uint32_t zerospace,
200  const uint8_t tolerance = kUseDefTol,
201  const int16_t excess = kMarkExcess,
202  const bool MSBfirst = true);
203  uint16_t matchGeneric(volatile uint16_t *data_ptr,
204  uint64_t *result_ptr,
205  const uint16_t remaining, const uint16_t nbits,
206  const uint16_t hdrmark, const uint32_t hdrspace,
207  const uint16_t onemark, const uint32_t onespace,
208  const uint16_t zeromark, const uint32_t zerospace,
209  const uint16_t footermark, const uint32_t footerspace,
210  const bool atleast = false,
211  const uint8_t tolerance = kUseDefTol,
212  const int16_t excess = kMarkExcess,
213  const bool MSBfirst = true);
214  uint16_t matchGeneric(volatile uint16_t *data_ptr, uint8_t *result_ptr,
215  const uint16_t remaining, const uint16_t nbits,
216  const uint16_t hdrmark, const uint32_t hdrspace,
217  const uint16_t onemark, const uint32_t onespace,
218  const uint16_t zeromark, const uint32_t zerospace,
219  const uint16_t footermark,
220  const uint32_t footerspace,
221  const bool atleast = false,
222  const uint8_t tolerance = kUseDefTol,
223  const int16_t excess = kMarkExcess,
224  const bool MSBfirst = true);
225  uint16_t matchGenericConstBitTime(volatile uint16_t *data_ptr,
226  uint64_t *result_ptr,
227  const uint16_t remaining,
228  const uint16_t nbits,
229  const uint16_t hdrmark,
230  const uint32_t hdrspace,
231  const uint16_t one,
232  const uint32_t zero,
233  const uint16_t footermark,
234  const uint32_t footerspace,
235  const bool atleast = false,
236  const uint8_t tolerance = kUseDefTol,
237  const int16_t excess = kMarkExcess,
238  const bool MSBfirst = true);
239  uint16_t matchManchesterData(volatile const uint16_t *data_ptr,
240  uint64_t *result_ptr,
241  const uint16_t remaining,
242  const uint16_t nbits,
243  const uint16_t half_period,
244  const uint16_t starting_balance = 0,
245  const uint8_t tolerance = kUseDefTol,
246  const int16_t excess = kMarkExcess,
247  const bool MSBfirst = true,
248  const bool GEThomas = true);
249  uint16_t matchManchester(volatile const uint16_t *data_ptr,
250  uint64_t *result_ptr,
251  const uint16_t remaining,
252  const uint16_t nbits,
253  const uint16_t hdrmark,
254  const uint32_t hdrspace,
255  const uint16_t clock_period,
256  const uint16_t footermark,
257  const uint32_t footerspace,
258  const bool atleast = false,
259  const uint8_t tolerance = kUseDefTol,
260  const int16_t excess = kMarkExcess,
261  const bool MSBfirst = true,
262  const bool GEThomas = true);
263  void crudeNoiseFilter(decode_results *results, const uint16_t floor = 0);
264  bool decodeHash(decode_results *results);
265 #if DECODE_VOLTAS
266  bool decodeVoltas(decode_results *results,
267  uint16_t offset = kStartOffset,
268  const uint16_t nbits = kVoltasBits,
269  const bool strict = true);
270 #endif // DECODE_VOLTAS
271 #if (DECODE_NEC || DECODE_SHERWOOD || DECODE_AIWA_RC_T501 || DECODE_SANYO)
272  bool decodeNEC(decode_results *results, uint16_t offset = kStartOffset,
273  const uint16_t nbits = kNECBits, const bool strict = true);
274 #endif
275 #if DECODE_ARGO
276  bool decodeArgo(decode_results *results, uint16_t offset = kStartOffset,
277  const uint16_t nbits = kArgoBits, const bool strict = true);
278 #endif // DECODE_ARGO
279 #if DECODE_SONY
280  bool decodeSony(decode_results *results, uint16_t offset = kStartOffset,
281  const uint16_t nbits = kSonyMinBits,
282  const bool strict = false);
283 #endif
284 #if DECODE_SANYO
285  // DISABLED due to poor quality.
286  // bool decodeSanyo(decode_results *results, uint16_t offset = kStartOffset,
287  // uint16_t nbits = kSanyoSA8650BBits,
288  // bool strict = false);
289  bool decodeSanyoLC7461(decode_results *results,
290  uint16_t offset = kStartOffset,
291  const uint16_t nbits = kSanyoLC7461Bits,
292  const bool strict = true);
293 #endif
294 #if DECODE_SANYO_AC
295  bool decodeSanyoAc(decode_results *results,
296  uint16_t offset = kStartOffset,
297  const uint16_t nbits = kSanyoAcBits,
298  const bool strict = true);
299 #endif // DECODE_SANYO_AC
300 #if DECODE_MITSUBISHI
301  bool decodeMitsubishi(decode_results *results, uint16_t offset = kStartOffset,
302  const uint16_t nbits = kMitsubishiBits,
303  const bool strict = true);
304 #endif
305 #if DECODE_MITSUBISHI2
306  bool decodeMitsubishi2(decode_results *results,
307  uint16_t offset = kStartOffset,
308  const uint16_t nbits = kMitsubishiBits,
309  const bool strict = true);
310 #endif
311 #if DECODE_MITSUBISHI_AC
312  bool decodeMitsubishiAC(decode_results *results,
313  uint16_t offset = kStartOffset,
314  const uint16_t nbits = kMitsubishiACBits,
315  const bool strict = false);
316 #endif
317 #if DECODE_MITSUBISHI136
318  bool decodeMitsubishi136(decode_results *results,
319  uint16_t offset = kStartOffset,
320  const uint16_t nbits = kMitsubishi136Bits,
321  const bool strict = true);
322 #endif
323 #if DECODE_MITSUBISHI112
324  bool decodeMitsubishi112(decode_results *results,
325  uint16_t offset = kStartOffset,
326  const uint16_t nbits = kMitsubishi112Bits,
327  const bool strict = true);
328 #endif
329 #if DECODE_MITSUBISHIHEAVY
331  uint16_t offset = kStartOffset,
332  const uint16_t nbits = kMitsubishiHeavy152Bits,
333  const bool strict = true);
334 #endif
335 #if (DECODE_RC5 || DECODE_R6 || DECODE_LASERTAG || DECODE_MWM)
336  int16_t getRClevel(decode_results *results, uint16_t *offset, uint16_t *used,
337  uint16_t bitTime, const uint8_t tolerance = kUseDefTol,
338  const int16_t excess = kMarkExcess,
339  const uint16_t delta = 0, const uint8_t maxwidth = 3);
340 #endif
341 #if DECODE_RC5
342  bool decodeRC5(decode_results *results, uint16_t offset = kStartOffset,
343  const uint16_t nbits = kRC5XBits,
344  const bool strict = true);
345 #endif
346 #if DECODE_RC6
347  bool decodeRC6(decode_results *results, uint16_t offset = kStartOffset,
348  const uint16_t nbits = kRC6Mode0Bits,
349  const bool strict = false);
350 #endif
351 #if DECODE_RCMM
352  bool decodeRCMM(decode_results *results, uint16_t offset = kStartOffset,
353  const uint16_t nbits = kRCMMBits,
354  const bool strict = false);
355 #endif
356 #if (DECODE_PANASONIC || DECODE_DENON)
357  bool decodePanasonic(decode_results *results, uint16_t offset = kStartOffset,
358  const uint16_t nbits = kPanasonicBits,
359  const bool strict = false,
360  const uint32_t manufacturer = kPanasonicManufacturer);
361 #endif
362 #if DECODE_LG
363  bool decodeLG(decode_results *results, uint16_t offset = kStartOffset,
364  const uint16_t nbits = kLgBits,
365  const bool strict = false);
366 #endif
367 #if DECODE_INAX
368  bool decodeInax(decode_results *results, uint16_t offset = kStartOffset,
369  const uint16_t nbits = kInaxBits,
370  const bool strict = true);
371 #endif // DECODE_INAX
372 #if DECODE_JVC
373  bool decodeJVC(decode_results *results, uint16_t offset = kStartOffset,
374  const uint16_t nbits = kJvcBits,
375  const bool strict = true);
376 #endif
377 #if DECODE_SAMSUNG
378  bool decodeSAMSUNG(decode_results *results, uint16_t offset = kStartOffset,
379  const uint16_t nbits = kSamsungBits,
380  const bool strict = true);
381 #endif
382 #if DECODE_SAMSUNG
383  bool decodeSamsung36(decode_results *results, uint16_t offset = kStartOffset,
384  const uint16_t nbits = kSamsung36Bits,
385  const bool strict = true);
386 #endif
387 #if DECODE_SAMSUNG_AC
388  bool decodeSamsungAC(decode_results *results, uint16_t offset = kStartOffset,
389  const uint16_t nbits = kSamsungAcBits,
390  const bool strict = true);
391 #endif
392 #if DECODE_WHYNTER
393  bool decodeWhynter(decode_results *results, uint16_t offset = kStartOffset,
394  const uint16_t nbits = kWhynterBits,
395  const bool strict = true);
396 #endif
397 #if DECODE_COOLIX
398  bool decodeCOOLIX(decode_results *results, uint16_t offset = kStartOffset,
399  const uint16_t nbits = kCoolixBits,
400  const bool strict = true);
401 #endif
402 #if DECODE_DENON
403  bool decodeDenon(decode_results *results, uint16_t offset = kStartOffset,
404  const uint16_t nbits = kDenonBits,
405  const bool strict = true);
406 #endif
407 #if DECODE_DISH
408  bool decodeDISH(decode_results *results, uint16_t offset = kStartOffset,
409  const uint16_t nbits = kDishBits,
410  const bool strict = true);
411 #endif
412 #if (DECODE_SHARP || DECODE_DENON)
413  bool decodeSharp(decode_results *results, uint16_t offset = kStartOffset,
414  const uint16_t nbits = kSharpBits,
415  const bool strict = true, const bool expansion = true);
416 #endif
417 #if DECODE_SHARP_AC
418  bool decodeSharpAc(decode_results *results, uint16_t offset = kStartOffset,
419  const uint16_t nbits = kSharpAcBits,
420  const bool strict = true);
421 #endif
422 #if DECODE_AIWA_RC_T501
423  bool decodeAiwaRCT501(decode_results *results, uint16_t offset = kStartOffset,
424  const uint16_t nbits = kAiwaRcT501Bits,
425  const bool strict = true);
426 #endif
427 #if DECODE_NIKAI
428  bool decodeNikai(decode_results *results, uint16_t offset = kStartOffset,
429  const uint16_t nbits = kNikaiBits,
430  const bool strict = true);
431 #endif
432 #if DECODE_MAGIQUEST
433  bool decodeMagiQuest(decode_results *results, uint16_t offset = kStartOffset,
434  const uint16_t nbits = kMagiquestBits,
435  const bool strict = true);
436 #endif
437 #if DECODE_KELVINATOR
438  bool decodeKelvinator(decode_results *results, uint16_t offset = kStartOffset,
439  const uint16_t nbits = kKelvinatorBits,
440  const bool strict = true);
441 #endif
442 #if DECODE_DAIKIN
443  bool decodeDaikin(decode_results *results, uint16_t offset = kStartOffset,
444  const uint16_t nbits = kDaikinBits,
445  const bool strict = true);
446 #endif
447 #if DECODE_DAIKIN64
448  bool decodeDaikin64(decode_results *results, uint16_t offset = kStartOffset,
449  const uint16_t nbits = kDaikin64Bits,
450  const bool strict = true);
451 #endif // DECODE_DAIKIN64
452 #if DECODE_DAIKIN128
453  bool decodeDaikin128(decode_results *results, uint16_t offset = kStartOffset,
454  const uint16_t nbits = kDaikin128Bits,
455  const bool strict = true);
456 #endif // DECODE_DAIKIN128
457 #if DECODE_DAIKIN152
458  bool decodeDaikin152(decode_results *results, uint16_t offset = kStartOffset,
459  const uint16_t nbits = kDaikin152Bits,
460  const bool strict = true);
461 #endif // DECODE_DAIKIN152
462 #if DECODE_DAIKIN160
463  bool decodeDaikin160(decode_results *results, uint16_t offset = kStartOffset,
464  const uint16_t nbits = kDaikin160Bits,
465  const bool strict = true);
466 #endif // DECODE_DAIKIN160
467 #if DECODE_DAIKIN176
468  bool decodeDaikin176(decode_results *results, uint16_t offset = kStartOffset,
469  const uint16_t nbits = kDaikin176Bits,
470  const bool strict = true);
471 #endif // DECODE_DAIKIN176
472 #if DECODE_DAIKIN2
473  bool decodeDaikin2(decode_results *results, uint16_t offset = kStartOffset,
474  const uint16_t nbits = kDaikin2Bits,
475  const bool strict = true);
476 #endif
477 #if DECODE_DAIKIN216
478  bool decodeDaikin216(decode_results *results, uint16_t offset = kStartOffset,
479  const uint16_t nbits = kDaikin216Bits,
480  const bool strict = true);
481 #endif
482 #if DECODE_TOSHIBA_AC
483  bool decodeToshibaAC(decode_results *results, uint16_t offset = kStartOffset,
484  const uint16_t nbits = kToshibaACBits,
485  const bool strict = true);
486 #endif
487 #if DECODE_TROTEC
488  bool decodeTrotec(decode_results *results, uint16_t offset = kStartOffset,
489  const uint16_t nbits = kTrotecBits,
490  const bool strict = true);
491 #endif // DECODE_TROTEC
492 #if DECODE_MIDEA
493  bool decodeMidea(decode_results *results, uint16_t offset = kStartOffset,
494  const uint16_t nbits = kMideaBits,
495  const bool strict = true);
496 #endif // DECODE_MIDEA
497 #if DECODE_MIDEA24
498  bool decodeMidea24(decode_results *results, uint16_t offset = kStartOffset,
499  const uint16_t nbits = kMidea24Bits,
500  const bool strict = true);
501 #endif // DECODE_MIDEA24
502 #if DECODE_FUJITSU_AC
503  bool decodeFujitsuAC(decode_results *results, uint16_t offset = kStartOffset,
504  const uint16_t nbits = kFujitsuAcBits,
505  const bool strict = false);
506 #endif
507 #if DECODE_LASERTAG
508  bool decodeLasertag(decode_results *results, uint16_t offset = kStartOffset,
509  const uint16_t nbits = kLasertagBits,
510  const bool strict = true);
511 #endif
512 #if DECODE_CARRIER_AC
513  bool decodeCarrierAC(decode_results *results, uint16_t offset = kStartOffset,
514  const uint16_t nbits = kCarrierAcBits,
515  const bool strict = true);
516 #endif // DECODE_CARRIER_AC
517 #if DECODE_CARRIER_AC40
518  bool decodeCarrierAC40(decode_results *results,
519  uint16_t offset = kStartOffset,
520  const uint16_t nbits = kCarrierAc40Bits,
521  const bool strict = true);
522 #endif // DECODE_CARRIER_AC40
523 #if DECODE_CARRIER_AC64
524  bool decodeCarrierAC64(decode_results *results,
525  uint16_t offset = kStartOffset,
526  const uint16_t nbits = kCarrierAc64Bits,
527  const bool strict = true);
528 #endif // DECODE_CARRIER_AC64
529 #if DECODE_GOODWEATHER
530  bool decodeGoodweather(decode_results *results,
531  uint16_t offset = kStartOffset,
532  const uint16_t nbits = kGoodweatherBits,
533  const bool strict = true);
534 #endif // DECODE_GOODWEATHER
535 #if DECODE_GREE
536  bool decodeGree(decode_results *results, uint16_t offset = kStartOffset,
537  const uint16_t nbits = kGreeBits,
538  const bool strict = true);
539 #endif
540 #if (DECODE_HAIER_AC | DECODE_HAIER_AC_YRW02)
541  bool decodeHaierAC(decode_results *results, uint16_t offset = kStartOffset,
542  const uint16_t nbits = kHaierACBits,
543  const bool strict = true);
544 #endif
545 #if DECODE_HAIER_AC_YRW02
546  bool decodeHaierACYRW02(decode_results *results,
547  uint16_t offset = kStartOffset,
548  const uint16_t nbits = kHaierACYRW02Bits,
549  const bool strict = true);
550 #endif
551 #if (DECODE_HITACHI_AC || DECODE_HITACHI_AC2 || DECODE_HITACHI_AC344)
552  bool decodeHitachiAC(decode_results *results, uint16_t offset = kStartOffset,
553  const uint16_t nbits = kHitachiAcBits,
554  const bool strict = true, const bool MSBfirst = true);
555 #endif
556 #if DECODE_HITACHI_AC1
557  bool decodeHitachiAC1(decode_results *results, uint16_t offset = kStartOffset,
558  const uint16_t nbits = kHitachiAc1Bits,
559  const bool strict = true);
560 #endif
561 #if DECODE_HITACHI_AC3
562  bool decodeHitachiAc3(decode_results *results,
563  uint16_t offset = kStartOffset,
564  const uint16_t nbits = kHitachiAc3Bits,
565  const bool strict = true);
566 #endif // DECODE_HITACHI_AC3
567 #if DECODE_HITACHI_AC424
568  bool decodeHitachiAc424(decode_results *results,
569  uint16_t offset = kStartOffset,
570  const uint16_t nbits = kHitachiAc424Bits,
571  const bool strict = true);
572 #endif // DECODE_HITACHI_AC424
573 #if DECODE_GICABLE
574  bool decodeGICable(decode_results *results, uint16_t offset = kStartOffset,
575  const uint16_t nbits = kGicableBits,
576  const bool strict = true);
577 #endif
578 #if DECODE_WHIRLPOOL_AC
579  bool decodeWhirlpoolAC(decode_results *results,
580  uint16_t offset = kStartOffset,
581  const uint16_t nbits = kWhirlpoolAcBits,
582  const bool strict = true);
583 #endif
584 #if DECODE_LUTRON
585  bool decodeLutron(decode_results *results, uint16_t offset = kStartOffset,
586  const uint16_t nbits = kLutronBits,
587  const bool strict = true);
588 #endif
589 #if DECODE_ELECTRA_AC
590  bool decodeElectraAC(decode_results *results, uint16_t offset = kStartOffset,
591  const uint16_t nbits = kElectraAcBits,
592  const bool strict = true);
593 #endif
594 #if DECODE_PANASONIC_AC
595  bool decodePanasonicAC(decode_results *results,
596  uint16_t offset = kStartOffset,
597  const uint16_t nbits = kPanasonicAcBits,
598  const bool strict = true);
599 #endif
600 #if DECODE_PIONEER
601  bool decodePioneer(decode_results *results, uint16_t offset = kStartOffset,
602  const uint16_t nbits = kPioneerBits,
603  const bool strict = true);
604 #endif
605 #if DECODE_MWM
606  bool decodeMWM(decode_results *results, uint16_t offset = kStartOffset,
607  const uint16_t nbits = 24,
608  const bool strict = true);
609 #endif
610 #if DECODE_VESTEL_AC
611  bool decodeVestelAc(decode_results *results, uint16_t offset = kStartOffset,
612  const uint16_t nbits = kVestelAcBits,
613  const bool strict = true);
614 #endif
615 #if DECODE_TECO
616  bool decodeTeco(decode_results *results, uint16_t offset = kStartOffset,
617  const uint16_t nbits = kTecoBits,
618  const bool strict = false);
619 #endif
620 #if DECODE_LEGOPF
621  bool decodeLegoPf(decode_results *results, uint16_t offset = kStartOffset,
622  const uint16_t nbits = kLegoPfBits,
623  const bool strict = true);
624 #endif
625 #if DECODE_NEOCLIMA
626  bool decodeNeoclima(decode_results *results, uint16_t offset = kStartOffset,
627  const uint16_t nbits = kNeoclimaBits,
628  const bool strict = true);
629 #endif // DECODE_NEOCLIMA
630 #if DECODE_AMCOR
631  bool decodeAmcor(decode_results *results, uint16_t offset = kStartOffset,
632  const uint16_t nbits = kAmcorBits,
633  const bool strict = true);
634 #endif // DECODE_AMCOR
635 #if DECODE_EPSON
636  bool decodeEpson(decode_results *results, uint16_t offset = kStartOffset,
637  const uint16_t nbits = kEpsonBits,
638  const bool strict = true);
639 #endif // DECODE_EPSON
640 #if DECODE_SYMPHONY
641  bool decodeSymphony(decode_results *results, uint16_t offset = kStartOffset,
642  const uint16_t nbits = kSymphonyBits,
643  const bool strict = true);
644 #endif // DECODE_SYMPHONY
645 #if DECODE_AIRWELL
646  bool decodeAirwell(decode_results *results, uint16_t offset = kStartOffset,
647  const uint16_t nbits = kAirwellBits,
648  const bool strict = true);
649 #endif // DECODE_AIRWELL
650 #if DECODE_DELONGHI_AC
651  bool decodeDelonghiAc(decode_results *results, uint16_t offset = kStartOffset,
652  const uint16_t nbits = kDelonghiAcBits,
653  const bool strict = true);
654 #endif // DECODE_DELONGHI_AC
655 #if DECODE_DOSHISHA
656  bool decodeDoshisha(decode_results *results, uint16_t offset = kStartOffset,
657  const uint16_t nbits = kDoshishaBits,
658  const bool strict = true);
659 #endif // DECODE_DOSHISHA
660 #if DECODE_MULTIBRACKETS
661  bool decodeMultibrackets(decode_results *results,
662  uint16_t offset = kStartOffset,
663  const uint16_t nbits = kMultibracketsBits,
664  const bool strict = true);
665 #endif // DECODE_MULTIBRACKETS
666 #if DECODE_CORONA_AC
667  bool decodeCoronaAc(decode_results *results, uint16_t offset = kStartOffset,
668  const uint16_t nbits = kCoronaAcBitsShort,
669  const bool strict = true);
670 #endif // DECODE_CORONA_AC
671 #if DECODE_ZEPEAL
672 bool decodeZepeal(decode_results *results, uint16_t offset = kStartOffset,
673  const uint16_t nbits = kZepealBits,
674  const bool strict = true);
675 #endif // DECODE_ZEPEAL
676 #if DECODE_METZ
677 bool decodeMetz(decode_results *results, uint16_t offset = kStartOffset,
678  const uint16_t nbits = kMetzBits,
679  const bool strict = true);
680 #endif // DECODE_METZ
681 };
682 
683 #endif // IRRECV_H_
IRrecv::decodeMultibrackets
bool decodeMultibrackets(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMultibracketsBits, const bool strict=true)
Decode the Multibrackets message. Status: BETA / Appears to be working.
Definition: ir_Multibrackets.cpp:59
kDelonghiAcBits
const uint16_t kDelonghiAcBits
Definition: IRremoteESP8266.h:886
IRrecv::decodeMitsubishi
bool decodeMitsubishi(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishiBits, const bool strict=true)
Decode the supplied Mitsubishi 16-bit message. Status: STABLE / Working.
Definition: ir_Mitsubishi.cpp:123
IRrecv::decodeHaierAC
bool decodeHaierAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHaierACBits, const bool strict=true)
Decode the supplied Haier HSU07-HEA03 remote message. Status: STABLE / Known to be working.
Definition: ir_Haier.cpp:974
IRrecv::decodeNEC
bool decodeNEC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kNECBits, const bool strict=true)
Decode the supplied NEC (Renesas) message. Status: STABLE / Known good.
Definition: ir_NEC.cpp:81
kFnvPrime32
const uint32_t kFnvPrime32
Definition: IRrecv.h:52
decode_results::overflow
bool overflow
Definition: IRrecv.h:109
IRrecv::decodeDaikin128
bool decodeDaikin128(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin128Bits, const bool strict=true)
Decode the supplied Daikin 128-bit message. (DAIKIN128) Status: STABLE / Known Working.
Definition: ir_Daikin.cpp:3119
kGicableBits
const uint16_t kGicableBits
Definition: IRremoteESP8266.h:904
IRrecv::matchGeneric
uint16_t matchGeneric(volatile uint16_t *data_ptr, uint64_t *result_ptr, const uint16_t remaining, const uint16_t nbits, const uint16_t hdrmark, const uint32_t hdrspace, const uint16_t onemark, const uint32_t onespace, const uint16_t zeromark, const uint32_t zerospace, const uint16_t footermark, const uint32_t footerspace, const bool atleast=false, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true)
Match & decode a generic/typical <= 64bit IR message. The data is stored at result_ptr.
Definition: IRrecv.cpp:1284
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
IRrecv::getRClevel
int16_t getRClevel(decode_results *results, uint16_t *offset, uint16_t *used, uint16_t bitTime, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const uint16_t delta=0, const uint8_t maxwidth=3)
Gets one undecoded level at a time from the raw buffer. The RC5/6 decoding is easier if the data is b...
Definition: ir_RC5_RC6.cpp:243
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
IRrecv::decodeSanyoAc
bool decodeSanyoAc(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSanyoAcBits, const bool strict=true)
Decode the supplied SanyoAc message. Status: STABLE / Reported as working.
Definition: ir_Sanyo.cpp:274
irparams_t::overflow
uint8_t overflow
Definition: IRrecv.h:78
IRrecv::decodeMitsubishi2
bool decodeMitsubishi2(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishiBits, const bool strict=true)
Decode the supplied second variation of a Mitsubishi 16-bit message. Status: STABLE / Working.
Definition: ir_Mitsubishi.cpp:188
IRrecv::decodeGree
bool decodeGree(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kGreeBits, const bool strict=true)
Decode the supplied Gree HVAC message. Status: STABLE / Working.
Definition: ir_Gree.cpp:659
kAirwellBits
const uint16_t kAirwellBits
Definition: IRremoteESP8266.h:838
IRrecv::irparams_save
irparams_t * irparams_save
Definition: IRrecv.h:151
kMitsubishiACBits
const uint16_t kMitsubishiACBits
Definition: IRremoteESP8266.h:958
IRrecv::decodeFujitsuAC
bool decodeFujitsuAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kFujitsuAcBits, const bool strict=false)
Decode the supplied Fujitsu AC IR message if possible. Status: STABLE / Working.
Definition: ir_Fujitsu.cpp:745
IRrecv::decodeTrotec
bool decodeTrotec(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kTrotecBits, const bool strict=true)
Decode the supplied Trotec message. Status: STABLE / Works. Untested on real devices.
Definition: ir_Trotec.cpp:313
IRrecv::decodeNeoclima
bool decodeNeoclima(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kNeoclimaBits, const bool strict=true)
Decode the supplied Neoclima message. Status: STABLE / Known working.
Definition: ir_Neoclima.cpp:548
kVoltasBits
const uint16_t kVoltasBits
Definition: IRremoteESP8266.h:1045
IRrecv::decodeMitsubishi112
bool decodeMitsubishi112(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishi112Bits, const bool strict=true)
Decode the supplied Mitsubishi/TCL 112-bit A/C message. (MITSUBISHI112, TCL112AC) Status: STABLE / Re...
Definition: ir_Mitsubishi.cpp:1216
IRrecv::decodeSamsungAC
bool decodeSamsungAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSamsungAcBits, const bool strict=true)
Decode the supplied Samsung A/C message. Status: Stable / Known to be working.
Definition: ir_Samsung.cpp:789
IRrecv::decodeAirwell
bool decodeAirwell(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kAirwellBits, const bool strict=true)
Decode the supplied Airwell "Manchester code" message.
Definition: ir_Airwell.cpp:53
kRC5XBits
const uint16_t kRC5XBits
Definition: IRremoteESP8266.h:990
IRrecv::decodeMagiQuest
bool decodeMagiQuest(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMagiquestBits, const bool strict=true)
Decode the supplied MagiQuest message. Status: Beta / Should work.
Definition: ir_Magiquest.cpp:69
irparams_t::rawlen
uint16_t rawlen
Definition: IRrecv.h:77
kUseDefTol
const uint8_t kUseDefTol
Definition: IRrecv.h:36
IRrecv::decodeDelonghiAc
bool decodeDelonghiAc(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDelonghiAcBits, const bool strict=true)
Decode the supplied Delonghi A/C message. Status: STABLE / Expected to be working.
Definition: ir_Delonghi.cpp:60
IRrecv
Class for receiving IR messages.
Definition: IRrecv.h:114
irparams_t::bufsize
uint16_t bufsize
Definition: IRrecv.h:73
decode_results
Results returned from the decoder.
Definition: IRrecv.h:92
IRrecv::matchGenericConstBitTime
uint16_t matchGenericConstBitTime(volatile uint16_t *data_ptr, uint64_t *result_ptr, const uint16_t remaining, const uint16_t nbits, const uint16_t hdrmark, const uint32_t hdrspace, const uint16_t one, const uint32_t zero, const uint16_t footermark, const uint32_t footerspace, const bool atleast=false, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true)
Match & decode a generic/typical constant bit time <= 64bit IR message. The data is stored at result_...
Definition: IRrecv.cpp:1378
IRrecv::decodeCarrierAC64
bool decodeCarrierAC64(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kCarrierAc64Bits, const bool strict=true)
Decode the supplied Carrier 64-bit HVAC message. Status: STABLE / Known to be working.
Definition: ir_Carrier.cpp:197
kCoolixBits
const uint16_t kCoolixBits
Definition: IRremoteESP8266.h:849
IRrecv::decodeArgo
bool decodeArgo(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kArgoBits, const bool strict=true)
Decode the supplied Argo message. Status: BETA / Probably works.
Definition: ir_Argo.cpp:459
kCoronaAcBitsShort
const uint16_t kCoronaAcBitsShort
Definition: IRremoteESP8266.h:859
match_result_t::data
uint64_t data
Definition: IRrecv.h:85
kSamsung36Bits
const uint16_t kSamsung36Bits
Definition: IRremoteESP8266.h:995
kMagiquestBits
const uint16_t kMagiquestBits
Definition: IRremoteESP8266.h:946
irparams_t::rawbuf
uint16_t * rawbuf
Definition: IRrecv.h:74
irparams_t
Information for the interrupt handler.
Definition: IRrecv.h:69
IRrecv::getBufSize
uint16_t getBufSize(void)
Obtain the maximum number of entries possible in the capture buffer. i.e. It's size.
Definition: IRrecv.cpp:319
kSanyoLC7461Bits
const uint16_t kSanyoLC7461Bits
Definition: IRremoteESP8266.h:1006
decode_results::repeat
bool repeat
Definition: IRrecv.h:110
IRrecv::decodeHitachiAC
bool decodeHitachiAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHitachiAcBits, const bool strict=true, const bool MSBfirst=true)
Decode the supplied Hitachi A/C message. Status: STABLE / Expected to work.
Definition: ir_Hitachi.cpp:870
kTrotecBits
const uint16_t kTrotecBits
Definition: IRremoteESP8266.h:1036
IRrecv::decodeVestelAc
bool decodeVestelAc(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kVestelAcBits, const bool strict=true)
Decode the supplied Vestel message. Status: Alpha / Needs testing against a real device.
Definition: ir_Vestel.cpp:572
kIdleState
const uint8_t kIdleState
Definition: IRrecv.h:31
IRrecv::decodeAmcor
bool decodeAmcor(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kAmcorBits, const bool strict=true)
Decode the supplied Amcor HVAC message. Status: STABLE / Reported as working.
Definition: ir_Amcor.cpp:59
IRrecv::decodeDaikin
bool decodeDaikin(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikinBits, const bool strict=true)
Decode the supplied Daikin 280-bit message. (DAIKIN) Status: STABLE / Reported as working.
Definition: ir_Daikin.cpp:619
irparams_t::recvpin
uint8_t recvpin
Definition: IRrecv.h:70
irparams_t::timer
uint16_t timer
Definition: IRrecv.h:72
IRrecv::decodeDaikin64
bool decodeDaikin64(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin64Bits, const bool strict=true)
Decode the supplied Daikin 64-bit message. (DAIKIN64) Status: Beta / Probably Working.
Definition: ir_Daikin.cpp:3601
IRrecv::decodeMetz
bool decodeMetz(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMetzBits, const bool strict=true)
Decode the supplied Metz message. Status: BETA / Probably works.
Definition: ir_Metz.cpp:67
match_result_t::success
bool success
Definition: IRrecv.h:84
IRrecv::decodeDaikin2
bool decodeDaikin2(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin2Bits, const bool strict=true)
Decode the supplied Daikin 312-bit message. (DAIKIN2) Status: STABLE / Works as expected.
Definition: ir_Daikin.cpp:1415
kElectraAcBits
const uint16_t kElectraAcBits
Definition: IRremoteESP8266.h:897
IRrecv::matchSpace
bool matchSpace(const uint32_t measured, const uint32_t desired, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess)
Check if we match a space signal(measured) with the desired within +/-tolerance percent,...
Definition: IRrecv.cpp:1016
kSonyMinBits
const uint16_t kSonyMinBits
Definition: IRremoteESP8266.h:1019
kStopState
const uint8_t kStopState
Definition: IRrecv.h:34
decode_results::rawlen
uint16_t rawlen
Definition: IRrecv.h:108
kMaxTimeoutMs
const uint16_t kMaxTimeoutMs
Definition: IRrecv.h:49
kDaikin2Bits
const uint16_t kDaikin2Bits
Definition: IRremoteESP8266.h:867
IRrecv::decodePanasonic
bool decodePanasonic(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kPanasonicBits, const bool strict=false, const uint32_t manufacturer=kPanasonicManufacturer)
Decode the supplied Panasonic message. Status: STABLE / Should be working.
Definition: ir_Panasonic.cpp:130
kHitachiAc1Bits
const uint16_t kHitachiAc1Bits
Definition: IRremoteESP8266.h:921
IRrecv::decodeElectraAC
bool decodeElectraAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kElectraAcBits, const bool strict=true)
Decode the supplied Electra A/C message. Status: STABLE / Known working.
Definition: ir_Electra.cpp:377
IRrecv::decodeDaikin216
bool decodeDaikin216(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin216Bits, const bool strict=true)
Decode the supplied Daikin 216-bit message. (DAIKIN216) Status: STABLE / Should be working.
Definition: ir_Daikin.cpp:1789
IRrecv::decodeDaikin152
bool decodeDaikin152(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin152Bits, const bool strict=true)
Decode the supplied Daikin 152-bit message. (DAIKIN152) Status: STABLE / Known Working.
Definition: ir_Daikin.cpp:3208
IRrecv::decodeDenon
bool decodeDenon(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDenonBits, const bool strict=true)
Decode the supplied Delonghi A/C message. Status: STABLE / Should work fine.
Definition: ir_Denon.cpp:70
kPanasonicBits
const uint16_t kPanasonicBits
Definition: IRremoteESP8266.h:979
decode_results::decode_type
decode_type_t decode_type
Definition: IRrecv.h:94
kPanasonicAcBits
const uint16_t kPanasonicAcBits
Definition: IRremoteESP8266.h:983
kRepeat
const uint64_t kRepeat
Definition: IRrecv.h:26
IRrecv::setTolerance
void setTolerance(const uint8_t percent=kTolerance)
Set the base tolerance percentage for matching incoming IR messages.
Definition: IRrecv.cpp:332
IRrecv::decodeMidea
bool decodeMidea(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMideaBits, const bool strict=true)
Decode the supplied Midea message. Status: Alpha / Needs testing against a real device.
Definition: ir_Midea.cpp:440
IRrecv::decodeVoltas
bool decodeVoltas(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kVoltasBits, const bool strict=true)
Decode the supplied Voltas message. Status: STABLE / Working on real device.
Definition: ir_Voltas.cpp:61
kDaikin160Bits
const uint16_t kDaikin160Bits
Definition: IRremoteESP8266.h:872
IRrecv::copyIrParams
void copyIrParams(volatile irparams_t *src, irparams_t *dst)
Make a copy of the interrupt state & buffer data. Needed because irparams is marked as volatile,...
Definition: IRrecv.cpp:295
IRrecv::decodeKelvinator
bool decodeKelvinator(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kKelvinatorBits, const bool strict=true)
Decode the supplied Kelvinator message. Status: STABLE / Known working.
Definition: ir_Kelvinator.cpp:489
kGoodweatherBits
const uint16_t kGoodweatherBits
Definition: IRremoteESP8266.h:906
IRrecv::decodeMWM
bool decodeMWM(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=24, const bool strict=true)
Decode the supplied MWM message. Status: Implemented.
Definition: ir_MWM.cpp:81
IRrecv::enableIRIn
void enableIRIn(const bool pullup=false)
Set up and (re)start the IR capture mechanism.
Definition: IRrecv.cpp:228
kDaikin152Bits
const uint16_t kDaikin152Bits
Definition: IRremoteESP8266.h:878
IRrecv::decodePanasonicAC
bool decodePanasonicAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kPanasonicAcBits, const bool strict=true)
Decode the supplied Panasonic AC message. Status: STABLE / Works with real device(s).
Definition: ir_Panasonic.cpp:879
IRrecv::decodeDoshisha
bool decodeDoshisha(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDoshishaBits, const bool strict=true)
Decode the supplied Doshisha message. Status: STABLE / Works on real device.
Definition: ir_Doshisha.cpp:85
IRrecv::decodeZepeal
bool decodeZepeal(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kZepealBits, const bool strict=true)
Decode the supplied Zepeal message. Status: STABLE / Works on real device.
Definition: ir_Zepeal.cpp:67
IRrecv::decodeDaikin160
bool decodeDaikin160(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin160Bits, const bool strict=true)
Decode the supplied Daikin 160-bit message. (DAIKIN160) Status: STABLE / Confirmed working.
Definition: ir_Daikin.cpp:2162
IRrecv::decodeLasertag
bool decodeLasertag(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kLasertagBits, const bool strict=true)
Decode the supplied Lasertag message. Status: BETA / Appears to be working 90% of the time.
Definition: ir_Lasertag.cpp:70
IRremoteESP8266.h
kTimeoutMs
const uint8_t kTimeoutMs
Definition: IRrecv.h:47
IRrecv::_matchGeneric
uint16_t _matchGeneric(volatile uint16_t *data_ptr, uint64_t *result_bits_ptr, uint8_t *result_ptr, const bool use_bits, const uint16_t remaining, const uint16_t required, const uint16_t hdrmark, const uint32_t hdrspace, const uint16_t onemark, const uint32_t onespace, const uint16_t zeromark, const uint32_t zerospace, const uint16_t footermark, const uint32_t footerspace, const bool atleast=false, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true)
Match & decode a generic/typical IR message. The data is stored in result_bits_ptr or result_bytes_pt...
Definition: IRrecv.cpp:1184
kMarkState
const uint8_t kMarkState
Definition: IRrecv.h:32
IRrecv::setUnknownThreshold
void setUnknownThreshold(const uint16_t length)
Set the minimum length we will consider for reporting UNKNOWN message types.
Definition: IRrecv.cpp:324
kSymphonyBits
const uint16_t kSymphonyBits
Definition: IRremoteESP8266.h:1021
kRC6Mode0Bits
const uint16_t kRC6Mode0Bits
Definition: IRremoteESP8266.h:991
kStateSizeMax
const uint16_t kStateSizeMax
Definition: IRrecv.h:60
match_result_t
Results from a data match.
Definition: IRrecv.h:83
irparams_t::rcvstate
uint8_t rcvstate
Definition: IRrecv.h:71
kMetzBits
const uint16_t kMetzBits
Definition: IRremoteESP8266.h:947
IRrecv::decodeRC6
bool decodeRC6(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kRC6Mode0Bits, const bool strict=false)
Decode the supplied RC6 message. Status: Stable.
Definition: ir_RC5_RC6.cpp:383
IRrecv::decodeRC5
bool decodeRC5(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kRC5XBits, const bool strict=true)
Decode the supplied RC-5/RC5X message. Status: RC-5 (stable), RC-5X (alpha)
Definition: ir_RC5_RC6.cpp:309
IRrecv::~IRrecv
~IRrecv(void)
Class destructor Cleans up after the object is no longer needed. e.g. Frees up all memory used by the...
Definition: IRrecv.cpp:213
IRrecv::decodeHitachiAc3
bool decodeHitachiAc3(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHitachiAc3Bits, const bool strict=true)
Decode the supplied Hitachi 15to27-byte/120to216-bit A/C message. Status: STABLE / Works fine.
Definition: ir_Hitachi.cpp:1454
IRrecv::decodeWhynter
bool decodeWhynter(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kWhynterBits, const bool strict=true)
Decode the supplied Whynter message. Status: STABLE / Working. Strict mode is ALPHA.
Definition: ir_Whynter.cpp:74
IRrecv::decodeCarrierAC
bool decodeCarrierAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kCarrierAcBits, const bool strict=true)
Decode the supplied Carrier HVAC message.
Definition: ir_Carrier.cpp:84
IRrecv::matchData
match_result_t matchData(volatile uint16_t *data_ptr, const uint16_t nbits, const uint16_t onemark, const uint32_t onespace, const uint16_t zeromark, const uint32_t zerospace, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true)
Match & decode the typical data section of an IR message. The data value is stored in the least signi...
Definition: IRrecv.cpp:1092
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
kStartOffset
const uint16_t kStartOffset
Definition: IRrecv.h:20
kAmcorBits
const uint16_t kAmcorBits
Definition: IRremoteESP8266.h:844
IRrecv::decodeRCMM
bool decodeRCMM(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kRCMMBits, const bool strict=false)
Decode a Philips RC-MM packet (between 12 & 32 bits) if possible. Status: STABLE / Should be working.
Definition: ir_RCMM.cpp:96
IRrecv::IRrecv
IRrecv(const uint16_t recvpin, const uint16_t bufsize=kRawBuf, const uint8_t timeout=kTimeoutMs, const bool save_buffer=false, const uint8_t timer_num=kDefaultESP32Timer)
Class constructor Args:
Definition: IRrecv.cpp:152
IRrecv::decodeMitsubishi136
bool decodeMitsubishi136(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishi136Bits, const bool strict=true)
Decode the supplied Mitsubishi 136-bit A/C message. (MITSUBISHI136) Status: STABLE / Reported as work...
Definition: ir_Mitsubishi.cpp:835
decode_results::rawbuf
volatile uint16_t * rawbuf
Definition: IRrecv.h:107
kTolerance
const uint8_t kTolerance
Definition: IRrecv.h:35
IRrecv::decodeSharp
bool decodeSharp(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSharpBits, const bool strict=true, const bool expansion=true)
Decode the supplied Sharp message. Status: STABLE / Working fine.
Definition: ir_Sharp.cpp:156
match_result_t::used
uint16_t used
Definition: IRrecv.h:86
kPanasonicManufacturer
const uint32_t kPanasonicManufacturer
Definition: IRremoteESP8266.h:980
decode_results::address
uint32_t address
Definition: IRrecv.h:101
IRrecv::decodeNikai
bool decodeNikai(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kNikaiBits, const bool strict=true)
Decode the supplied Nikai message. Status: STABLE / Working.
Definition: ir_Nikai.cpp:52
kMitsubishiBits
const uint16_t kMitsubishiBits
Definition: IRremoteESP8266.h:953
IRrecv::match
bool match(const uint32_t measured, const uint32_t desired, const uint8_t tolerance=kUseDefTol, const uint16_t delta=0)
Check if we match a pulse(measured) with the desired within +/-tolerance percent and/or +/- a fixed d...
Definition: IRrecv.cpp:924
IRrecv::decodeSymphony
bool decodeSymphony(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSymphonyBits, const bool strict=true)
Decode the supplied Symphony packet/message. Status: STABLE / Should be working.
Definition: ir_Symphony.cpp:60
kSamsungAcBits
const uint16_t kSamsungAcBits
Definition: IRremoteESP8266.h:997
kUnknownThreshold
const uint16_t kUnknownThreshold
Definition: IRrecv.h:28
kMideaBits
const uint16_t kMideaBits
Definition: IRremoteESP8266.h:949
IRrecv::decodeAiwaRCT501
bool decodeAiwaRCT501(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kAiwaRcT501Bits, const bool strict=true)
Decode the supplied Aiwa RC T501 message. Status: BETA / Should work.
Definition: ir_Aiwa.cpp:61
kKelvinatorBits
const uint16_t kKelvinatorBits
Definition: IRremoteESP8266.h:936
IRrecv::decodeGICable
bool decodeGICable(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kGicableBits, const bool strict=true)
Decode the supplied G.I. Cable message. Status: Alpha / Not tested against a real device.
Definition: ir_GICable.cpp:63
IRrecv::decodeTeco
bool decodeTeco(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kTecoBits, const bool strict=false)
Decode the supplied Teco message. Status: STABLE / Tested.
Definition: ir_Teco.cpp:365
IRrecv::decodeSanyoLC7461
bool decodeSanyoLC7461(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSanyoLC7461Bits, const bool strict=true)
Decode the supplied SANYO LC7461 message. Status: BETA / Probably works.
Definition: ir_Sanyo.cpp:137
IRrecv::decodeCarrierAC40
bool decodeCarrierAC40(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kCarrierAc40Bits, const bool strict=true)
Decode the supplied Carrier 40-bit HVAC message. Carrier HVAC messages contain only 40 bits,...
Definition: ir_Carrier.cpp:149
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
IRrecv::matchAtLeast
bool matchAtLeast(const uint32_t measured, const uint32_t desired, const uint8_t tolerance=kUseDefTol, const uint16_t delta=0)
Check if we match a pulse(measured) of at least desired within tolerance percent and/or a fixed delta...
Definition: IRrecv.cpp:955
kZepealBits
const uint16_t kZepealBits
Definition: IRremoteESP8266.h:1043
kMidea24Bits
const uint16_t kMidea24Bits
Definition: IRremoteESP8266.h:951
IRrecv::decodeDaikin176
bool decodeDaikin176(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDaikin176Bits, const bool strict=true)
Decode the supplied Daikin 176-bit message. (DAIKIN176) Status: STABLE / Expected to work.
Definition: ir_Daikin.cpp:2563
kNeoclimaBits
const uint16_t kNeoclimaBits
Definition: IRremoteESP8266.h:977
kWhirlpoolAcBits
const uint16_t kWhirlpoolAcBits
Definition: IRremoteESP8266.h:1039
IRrecv::decodeSharpAc
bool decodeSharpAc(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSharpAcBits, const bool strict=true)
Decode the supplied Sharp A/C message. Status: STABLE / Known working.
Definition: ir_Sharp.cpp:723
IRrecv::decodeJVC
bool decodeJVC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kJvcBits, const bool strict=true)
Decode the supplied JVC message. Status: Stable / Known working.
Definition: ir_JVC.cpp:94
IRrecv::decodeMitsubishiAC
bool decodeMitsubishiAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishiACBits, const bool strict=false)
Decode the supplied Mitsubish 144-bit A/C message. Status: BETA / Probably works.
Definition: ir_Mitsubishi.cpp:254
kCarrierAc64Bits
const uint16_t kCarrierAc64Bits
Definition: IRremoteESP8266.h:855
kPioneerBits
const uint16_t kPioneerBits
Definition: IRremoteESP8266.h:986
decode_results::bits
uint16_t bits
Definition: IRrecv.h:106
kGreeBits
const uint16_t kGreeBits
Definition: IRremoteESP8266.h:909
kJvcBits
const uint16_t kJvcBits
Definition: IRremoteESP8266.h:934
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
IRrecv::ticksLow
uint32_t ticksLow(const uint32_t usecs, const uint8_t tolerance=kUseDefTol, const uint16_t delta=0)
Calculate the lower bound of the nr. of ticks.
Definition: IRrecv.cpp:898
kTecoBits
const uint16_t kTecoBits
Definition: IRremoteESP8266.h:1026
IRrecv::decodeEpson
bool decodeEpson(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kEpsonBits, const bool strict=true)
Decode the supplied Epson message. Status: Beta / Probably works.
Definition: ir_Epson.cpp:45
kToshibaACBits
const uint16_t kToshibaACBits
Definition: IRremoteESP8266.h:1029
IRrecv::decodeSony
bool decodeSony(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSonyMinBits, const bool strict=false)
Decode the supplied Sony/SIRC message. Status: STABLE / Should be working. strict mode is ALPHA / Unt...
Definition: ir_Sony.cpp:121
kDaikinBits
const uint16_t kDaikinBits
Definition: IRremoteESP8266.h:862
IRrecv::matchMark
bool matchMark(const uint32_t measured, const uint32_t desired, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess)
Check if we match a mark signal(measured) with the desired within +/-tolerance percent,...
Definition: IRrecv.cpp:997
kHitachiAcBits
const uint16_t kHitachiAcBits
Definition: IRremoteESP8266.h:918
kHitachiAc3Bits
const uint16_t kHitachiAc3Bits
Definition: IRremoteESP8266.h:925
kRawBuf
const uint16_t kRawBuf
Definition: IRrecv.h:25
IRrecv::decode
bool decode(decode_results *results, irparams_t *save=NULL, uint8_t max_skip=0, uint16_t noise_floor=0)
Decodes the received IR message. If the interrupt state is saved, we will immediately resume waiting ...
Definition: IRrecv.cpp:409
IRrecv::decodePioneer
bool decodePioneer(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kPioneerBits, const bool strict=true)
Decode the supplied Pioneer message. Status: STABLE / Should be working. (Self decodes & real example...
Definition: ir_Pioneer.cpp:92
IRrecv::getTolerance
uint8_t getTolerance(void)
Get the base tolerance percentage for matching incoming IR messages.
Definition: IRrecv.cpp:338
kDishBits
const uint16_t kDishBits
Definition: IRremoteESP8266.h:891
IRrecv::compare
uint16_t compare(const uint16_t oldval, const uint16_t newval)
Compare two tick values.
Definition: IRrecv.cpp:1034
decode_results::command
uint32_t command
Definition: IRrecv.h:102
kFujitsuAcBits
const uint16_t kFujitsuAcBits
Definition: IRremoteESP8266.h:902
decode_results::value
uint64_t value
Definition: IRrecv.h:100
kArgoBits
const uint16_t kArgoBits
Definition: IRremoteESP8266.h:847
kHitachiAc2StateLength
const uint16_t kHitachiAc2StateLength
Definition: IRremoteESP8266.h:922
IRrecv::decodeSamsung36
bool decodeSamsung36(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSamsung36Bits, const bool strict=true)
Decode the supplied Samsung36 message. Status: STABLE / Expected to work.
Definition: ir_Samsung.cpp:194
kFooter
const uint16_t kFooter
Definition: IRrecv.h:19
kNikaiBits
const uint16_t kNikaiBits
Definition: IRremoteESP8266.h:974
kLutronBits
const uint16_t kLutronBits
Definition: IRremoteESP8266.h:945
irparams_t::timeout
uint8_t timeout
Definition: IRrecv.h:79
IRrecv::decodeCoronaAc
bool decodeCoronaAc(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kCoronaAcBitsShort, const bool strict=true)
Decode the supplied CoronaAc message. Status: STABLE / Appears to be working.
Definition: ir_Corona.cpp:89
IRrecv::decodeLutron
bool decodeLutron(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kLutronBits, const bool strict=true)
Decode the supplied Lutron message. Status: STABLE / Working.
Definition: ir_Lutron.cpp:65
IRrecv::decodeDISH
bool decodeDISH(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kDishBits, const bool strict=true)
Decode the supplied DISH NETWORK message. Status: ALPHA (untested and unconfirmed....
Definition: ir_Dish.cpp:77
kRawTick
const uint16_t kRawTick
Definition: IRrecv.h:37
IRrecv::matchManchesterData
uint16_t matchManchesterData(volatile const uint16_t *data_ptr, uint64_t *result_ptr, const uint16_t remaining, const uint16_t nbits, const uint16_t half_period, const uint16_t starting_balance=0, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true, const bool GEThomas=true)
Match & decode a Manchester Code data (<= 64bits.
Definition: IRrecv.cpp:1572
IRrecv::resume
void resume(void)
Resume collection of received IR data.
Definition: IRrecv.cpp:280
kHaierACYRW02Bits
const uint16_t kHaierACYRW02Bits
Definition: IRremoteESP8266.h:915
kHitachiAc424Bits
const uint16_t kHitachiAc424Bits
Definition: IRremoteESP8266.h:931
IRrecv::decodeWhirlpoolAC
bool decodeWhirlpoolAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kWhirlpoolAcBits, const bool strict=true)
Decode the supplied Whirlpool A/C message. Status: STABLE / Working as intended.
Definition: ir_Whirlpool.cpp:642
kMarkExcess
const uint16_t kMarkExcess
Definition: IRrecv.h:24
IRrecv::decodeHaierACYRW02
bool decodeHaierACYRW02(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHaierACYRW02Bits, const bool strict=true)
Decode the supplied Haier YR-W02 remote A/C message. Status: BETA / Appears to be working.
Definition: ir_Haier.cpp:1020
IRrecv::decodeLG
bool decodeLG(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kLgBits, const bool strict=false)
Decode the supplied LG message. Status: STABLE / Working.
Definition: ir_LG.cpp:154
IRrecv::decodeCOOLIX
bool decodeCOOLIX(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kCoolixBits, const bool strict=true)
Decode the supplied Coolix A/C message. Status: STABLE / Known Working.
Definition: ir_Coolix.cpp:650
kLegoPfBits
const uint16_t kLegoPfBits
Definition: IRremoteESP8266.h:940
kSharpBits
const uint16_t kSharpBits
Definition: IRremoteESP8266.h:1010
IRrecv::decodeGoodweather
bool decodeGoodweather(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kGoodweatherBits, const bool strict=true)
Decode the supplied Goodweather message. Status: BETA / Probably works.
Definition: ir_Goodweather.cpp:429
IRrecv::_tolerance
uint8_t _tolerance
Definition: IRrecv.h:152
kDefaultESP32Timer
const uint8_t kDefaultESP32Timer
Definition: IRrecv.h:56
IRrecv::matchManchester
uint16_t matchManchester(volatile const uint16_t *data_ptr, uint64_t *result_ptr, const uint16_t remaining, const uint16_t nbits, const uint16_t hdrmark, const uint32_t hdrspace, const uint16_t clock_period, const uint16_t footermark, const uint32_t footerspace, const bool atleast=false, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true, const bool GEThomas=true)
Match & decode a Manchester Code <= 64bit IR message. The data is stored at result_ptr.
Definition: IRrecv.cpp:1465
IRrecv::decodeInax
bool decodeInax(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kInaxBits, const bool strict=true)
Decode the supplied Inax Toilet message. Status: Stable / Known working.
Definition: ir_Inax.cpp:51
IRrecv::crudeNoiseFilter
void crudeNoiseFilter(decode_results *results, const uint16_t floor=0)
Remove or merge pulses in the capture buffer that are too short.
Definition: IRrecv.cpp:345
IRrecv::decodeHitachiAC1
bool decodeHitachiAC1(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHitachiAc1Bits, const bool strict=true)
IRrecv::decodeSAMSUNG
bool decodeSAMSUNG(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kSamsungBits, const bool strict=true)
Decode the supplied Samsung 32-bit message. Status: STABLE.
Definition: ir_Samsung.cpp:120
IRrecv::decodeLegoPf
bool decodeLegoPf(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kLegoPfBits, const bool strict=true)
Decode the supplied LEGO Power Functions message. Status: STABLE / Appears to work.
Definition: ir_Lego.cpp:71
kRCMMBits
const uint16_t kRCMMBits
Definition: IRremoteESP8266.h:993
kVestelAcBits
const uint8_t kVestelAcBits
Definition: IRremoteESP8266.h:1042
kInaxBits
const uint16_t kInaxBits
Definition: IRremoteESP8266.h:932
IRrecv::decodeMitsubishiHeavy
bool decodeMitsubishiHeavy(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMitsubishiHeavy152Bits, const bool strict=true)
Decode the supplied Mitsubishi Heavy Industries A/C message. Status: BETA / Appears to be working....
Definition: ir_MitsubishiHeavy.cpp:1113
IRrecv::_unknown_threshold
uint16_t _unknown_threshold
Definition: IRrecv.h:157
kDaikin176Bits
const uint16_t kDaikin176Bits
Definition: IRremoteESP8266.h:881
IRrecv::decodeMidea24
bool decodeMidea24(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kMidea24Bits, const bool strict=true)
Decode the supplied Midea24 message. Status: STABLE / Confirmed working on a real device.
Definition: ir_Midea.cpp:531
IRrecv::disableIRIn
void disableIRIn(void)
Stop collection of any received IR data. Disable any timers and interrupts.
Definition: IRrecv.cpp:264
IRrecv::decodeHitachiAc424
bool decodeHitachiAc424(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kHitachiAc424Bits, const bool strict=true)
Decode the supplied Hitachi 53-byte/424-bit A/C message. Status: STABLE / Reported as working.
Definition: ir_Hitachi.cpp:983
IRrecv::decodeToshibaAC
bool decodeToshibaAC(decode_results *results, uint16_t offset=kStartOffset, const uint16_t nbits=kToshibaACBits, const bool strict=true)
Decode the supplied Toshiba A/C message. Status: STABLE / Working.
Definition: ir_Toshiba.cpp:472
IRrecv::ticksHigh
uint32_t ticksHigh(const uint32_t usecs, const uint8_t tolerance=kUseDefTol, const uint16_t delta=0)
Calculate the upper bound of the nr. of ticks.
Definition: IRrecv.cpp:911
kSamsungBits
const uint16_t kSamsungBits
Definition: IRremoteESP8266.h:994
IRrecv::_timer_num
uint8_t _timer_num
Definition: IRrecv.h:154
kDaikin64Bits
const uint16_t kDaikin64Bits
Definition: IRremoteESP8266.h:869
kDaikin216Bits
const uint16_t kDaikin216Bits
Definition: IRremoteESP8266.h:884
kMitsubishi136Bits
const uint16_t kMitsubishi136Bits
Definition: IRremoteESP8266.h:961
IRrecv::matchBytes
uint16_t matchBytes(volatile uint16_t *data_ptr, uint8_t *result_ptr, const uint16_t remaining, const uint16_t nbytes, const uint16_t onemark, const uint32_t onespace, const uint16_t zeromark, const uint32_t zerospace, const uint8_t tolerance=kUseDefTol, const int16_t excess=kMarkExcess, const bool MSBfirst=true)
Match & decode the typical data section of an IR message. The bytes are stored at result_ptr....
Definition: IRrecv.cpp:1134
kSanyoAcBits
const uint16_t kSanyoAcBits
Definition: IRremoteESP8266.h:1002
kMitsubishi112Bits
const uint16_t kMitsubishi112Bits
Definition: IRremoteESP8266.h:964
kEpsonBits
const uint16_t kEpsonBits
Definition: IRremoteESP8266.h:894
decode_results::state
uint8_t state[kStateSizeMax]
Definition: IRrecv.h:104
IRrecv::decodeHash
bool decodeHash(decode_results *results)
Decode any arbitrary IR message into a 32-bit code value. Instead of decoding using a standard encodi...
Definition: IRrecv.cpp:1055
kSpaceState
const uint8_t kSpaceState
Definition: IRrecv.h:33
kLgBits
const uint16_t kLgBits
Definition: IRremoteESP8266.h:942
IRrecv::_validTolerance
uint8_t _validTolerance(const uint8_t percentage)
Convert the tolerance percentage into something valid.
Definition: IRrecv.cpp:889
kHeader
const uint16_t kHeader
Definition: IRrecv.h:18
kFnvBasis32
const uint32_t kFnvBasis32
Definition: IRrecv.h:53