You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -386,7 +386,7 @@ Modify them by enabling / disabling them, or change the values if applicable.
386
386
| `USE_NO_SEND_PWM` | disabled | Use no carrier PWM, just simulate an **active low** receiver signal. Overrides `SEND_PWM_BY_TIMER` definition. |
387
387
| `USE_OPEN_DRAIN_OUTPUT_FOR_SEND_PIN` | disabled | Use or simulate open drain output mode at send pin. **Attention, active state of open drain is LOW**, so connect the send LED between positive supply and send pin! |
388
388
| `EXCLUDE_EXOTIC_PROTOCOLS` | disabled | If activated, BOSEWAVE, WHYNTER and LEGO_PF are excluded in `decode()` and in sending with `IrSender.write()`. Saves up to 650 bytes program memory. |
389
-
| `EXCLUDE_UNIVERSAL_PROTOCOLS` | disabled | If activated, the universal decoder for pulse width or pulse distance protocols and decodeHash (special decoder for all protocols) are excluded in `decode()`. Saves up to 1000 bytes program memory. |
389
+
| `EXCLUDE_UNIVERSAL_PROTOCOLS` | disabled | If activated, the universal decoder for pulse distance protocols and decodeHash (special decoder for all protocols) are excluded in `decode()`. Saves up to 1000 bytes program memory. |
390
390
| `DECODE_<Protocol name>` | all | Selection of individual protocol(s) to be decoded. You can specify multiple protocols. See [here](https://github.com/Arduino-IRremote/Arduino-IRremote/blob/master/src/IRremote.hpp#L98-L121) |
391
391
| `MARK_EXCESS_MICROS` | 20 | MARK_EXCESS_MICROS is subtracted from all marks and added to all spaces before decoding, to compensate for the signal forming of different IR receiver modules. |
392
392
| `RECORD_GAP_MICROS` | 5000 | Minimum gap between IR transmissions, to detect the end of a protocol.<br/>Must be greater than any space of a protocol e.g. the NEC header space of 4500 µs.<br/>Must be smaller than any gap between a command and a repeat; e.g. the retransmission gap for Sony is around 24 ms.<br/>Keep in mind, that this is the delay between the end of the received command and the start of decoding. |
Copy file name to clipboardExpand all lines: changelog.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ See also the commit log at github: https://github.com/Arduino-IRremote/Arduino-I
4
4
5
5
## 3.7.1
6
6
- SendRaw now supports bufferlenght > 255.
7
+
- Improved DistanceProtocol decoder output.
7
8
8
9
## 3.7.0
9
10
- Changed TOLERANCE to TOLERANCE_FOR_DECODERS_MARK_OR_SPACE_MATCHING and documented it.
@@ -56,15 +57,15 @@ See also the commit log at github: https://github.com/Arduino-IRremote/Arduino-I
56
57
- Moved blink13() back to IRrecv class.
57
58
- Added Kaseikyo convenience functions like sendKaseikyo_Denon().
58
59
- Improved / adjusted LG protocol and added class Aircondition_LG based on real hardware supplied by makerspace 201 (https://wiki.hackerspaces.org/ZwoNullEins) from Cologne.
59
-
- Improved universal decoder for pulse width or pulse distance protocols to support more than 32 bits.
60
+
- Improved universal decoder for pulse distance protocols to support more than 32 bits.
60
61
- Added mbed support.
61
62
62
63
## 3.3.0
63
64
- Fix errors if LED_BUILTIN is not defined.
64
65
- Fixed error for AVR timer1. Thanks to alexbarcelo.
65
66
- New example IRremoteExtensionTest.
66
67
- Enabled megaAVR 0-series devices.
67
-
- Added universal decoder for pulse width or pulse distance protocols.
68
+
- Added universal decoder for pulse distance protocols.
68
69
69
70
## 3.2.0
70
71
- Fix for ESP32 send Error, removed `USE_SOFT_SEND_PWM` macro.
0 commit comments