Skip to content

Commit

Permalink
v2.6.6 release
Browse files Browse the repository at this point in the history
_v2.6.6 (20190923)_

**[Bug Fixes]**
- Ensure `begin()` is called for every supported common a/c. (#905, #899)
- IRMQTTServer: Fix JSON state parsing. (#896)
- IRMQTTServer: Fix compilation error when `MQTT_CLIMATE_JSON` is `true`. (#893)

**[Features]**
- Mitsubishi136: Full A/C support. (#898, #890)
- Fujitsu: Add support for ARRY4 remote. (#895)
- Web-AC-control: Add new WebUI example sketch. (#880, #886)
- Improve Common A/C API (#913)
- IRMQTTServer: Support for multiple climates. (#903)
- IRMQTTServer: Add TX channel support for HTTP interface. (#929)
- IRMQTTServer: Add option to clear retained settings. (#917)
- auto_analyse_raw_data.py: Add decode code generation. (#909)
- auto_analyse_raw_data.py: General improvements (#906)

**[Misc]**
- IRMQTTServer: Use latest API for common A/C. (#928)
- IRMQTTServer: Add flag & documentation for Home Assistant mode. (#919)
- IRMQTTServer: Move from ArduinoJson v5 to v6. (#878)
- IRMQTTServer: Use retain for discovery message. (#881)
- Goodweather: Adjust timings & minor fixes. (#924)
- PanasonicAc: Add better SwingV support for common a/c framework. (#923)
- Daikin2: Corrections for common A/C interface. (#910)
- MitsubishiAC: Improve decoding. (#914)
- Fujitsu: Disable horiz swing for ARRY4. (#907)
- SamsungAc: Only send power on/off code if it's needed. (#884)
- Teco: Add timer support. (#883)
- More consistent A/C `::toString()` output. (#920)
  • Loading branch information
crankyoldgit committed Sep 23, 2019
1 parent 46f2946 commit 9ca04ad
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
This library enables you to **send _and_ receive** infra-red signals on an [ESP8266](https://github.com/esp8266/Arduino) or an
[ESP32](https://github.com/espressif/arduino-esp32) using the [Arduino framework](https://www.arduino.cc/) using common 940nm IR LEDs and common IR receiver modules. e.g. TSOP{17,22,24,36,38,44,48}* demodulators etc.

## v2.6.5 Now Available
Version 2.6.5 of the library is now [available](https://github.com/crankyoldgit/IRremoteESP8266/releases/latest). You can view the [Release Notes](ReleaseNotes.md) for all the significant changes.
## v2.6.6 Now Available
Version 2.6.6 of the library is now [available](https://github.com/crankyoldgit/IRremoteESP8266/releases/latest). You can view the [Release Notes](ReleaseNotes.md) for all the significant changes.

#### Upgrading from pre-v2.0
Usage of the library has been slightly changed in v2.0. You will need to change your usage to work with v2.0 and beyond. You can read more about the changes required on our [Upgrade to v2.0](https://github.com/crankyoldgit/IRremoteESP8266/wiki/Upgrading-to-v2.0) page.
Expand Down
33 changes: 33 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Release Notes

## _v2.6.6 (20190923)_

**[Bug Fixes]**
- Ensure `begin()` is called for every supported common a/c. (#905, #899)
- IRMQTTServer: Fix JSON state parsing. (#896)
- IRMQTTServer: Fix compilation error when `MQTT_CLIMATE_JSON` is `true`. (#893)

**[Features]**
- Mitsubishi136: Full A/C support. (#898, #890)
- Fujitsu: Add support for ARRY4 remote. (#895)
- Web-AC-control: Add new WebUI example sketch. (#880, #886)
- Improve Common A/C API (#913)
- IRMQTTServer: Support for multiple climates. (#903)
- IRMQTTServer: Add TX channel support for HTTP interface. (#929)
- IRMQTTServer: Add option to clear retained settings. (#917)
- auto_analyse_raw_data.py: Add decode code generation. (#909)
- auto_analyse_raw_data.py: General improvements (#906)

**[Misc]**
- IRMQTTServer: Use latest API for common A/C. (#928)
- IRMQTTServer: Add flag & documentation for Home Assistant mode. (#919)
- IRMQTTServer: Move from ArduinoJson v5 to v6. (#878)
- IRMQTTServer: Use retain for discovery message. (#881)
- Goodweather: Adjust timings & minor fixes. (#924)
- PanasonicAc: Add better SwingV support for common a/c framework. (#923)
- Daikin2: Corrections for common A/C interface. (#910)
- MitsubishiAC: Improve decoding. (#914)
- Fujitsu: Disable horiz swing for ARRY4. (#907)
- SamsungAc: Only send power on/off code if it's needed. (#884)
- Teco: Add timer support. (#883)
- More consistent A/C `::toString()` output. (#920)


## _v2.6.5 (20190828)_

**[Bug Fixes]**
Expand Down
10 changes: 6 additions & 4 deletions SupportedProtocols.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--- WARNING: Do NOT edit this file directly.
It is generated by './tools/scrape_supported_devices.py'.
Last generated: Wed Aug 28 12:37:20 2019 --->
Last generated: Mon Sep 23 17:11:00 2019 --->
# IR Protocols supported by this library

| Protocol | Brand | Model | A/C Model | Detailed A/C Support |
Expand All @@ -15,8 +15,8 @@
| [Denon](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Denon.cpp) | **Unknown** | | | - |
| [Dish](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Dish.cpp) | **DISH NETWORK** | echostar 301 | | - |
| [Electra](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Electra.cpp) | **[AUX](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Electra.h)** | KFR-35GW/BpNFW=3 A/C<BR>YKR-T/011 remote | | Yes |
| [Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.cpp) | **[Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.h)** | AR-DB1 remote<BR>AR-RAE1E remote<BR>AR-RAH2E remote<BR>AR-REB1E remote<BR>AST9RSGCW A/C<BR>ASYG30LFCA A/C<BR>ASYG7LMCA A/C | ARDB1<BR>ARJW2<BR>ARRAH2E<BR>ARREB1E | Yes |
| [Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.cpp) | **[Fujitsu General](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.h)** | AR-JW2 remote | ARDB1<BR>ARJW2<BR>ARRAH2E<BR>ARREB1E | Yes |
| [Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.cpp) | **[Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.h)** | AGTV14LAC A/C<BR>AR-DB1 remote<BR>AR-DL10 remote<BR>AR-RAC1E remote<BR>AR-RAE1E remote<BR>AR-RAH2E remote<BR>AR-REB1E remote<BR>AR-RY4 remote<BR>AST9RSGCW A/C<BR>ASTB09LBC A/C<BR>ASU30C1 A/C<BR>ASYG30LFCA A/C<BR>ASYG7LMCA A/C | ARDB1<BR>ARJW2<BR>ARRAH2E<BR>ARREB1E<BR>ARRY4 | Yes |
| [Fujitsu](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.cpp) | **[Fujitsu General](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Fujitsu.h)** | AR-JW2 remote | ARDB1<BR>ARJW2<BR>ARRAH2E<BR>ARREB1E<BR>ARRY4 | Yes |
| [GICable](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_GICable.cpp) | **Unknown** | | | - |
| [GlobalCache](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_GlobalCache.cpp) | **Unknown** | | | - |
| [Goodweather](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Goodweather.cpp) | **[Goodweather](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Goodweather.h)** | ZH/JT-03 remote | | Yes |
Expand All @@ -39,7 +39,8 @@
| [Midea](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.cpp) | **[Comfee](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.h)** | MPD1-12CRN7 A/C | | Yes |
| [Midea](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.cpp) | **[Keystone](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.h)** | RG57H4(B)BGEF remote | | Yes |
| [Midea](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.cpp) | **[Pioneer System](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Midea.h)** | RUBO18GMFILCAD A/C (18K BTU)<BR>RYBO12GMFILCAD A/C (12K BTU) | | Yes |
| [Mitsubishi](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.cpp) | **[Mitsubishi](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.h)** | HC3000 Projector<BR>TV | | Yes |
| [Mitsubishi](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.cpp) | **[Mitsubishi](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.h)** | HC3000 Projector<BR>KM14A 0179213 remote<BR>MS-GK24VA A/C<BR>TV | | Yes |
| [Mitsubishi](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.cpp) | **[Mitsubishi Electric](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Mitsubishi.h)** | 001CP T7WE10714 remote<BR>PEAD-RP71JAA Ducted A/C | | Yes |
| [MitsubishiHeavy](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_MitsubishiHeavy.cpp) | **[Mitsubishi Heavy Industries](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_MitsubishiHeavy.h)** | RKX502A001C remote<BR>RLA502A700B remote<BR>SRKxxZJ-S A/C<BR>SRKxxZM-S A/C<BR>SRKxxZMXA-S A/C | | Yes |
| [NEC](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_NEC.cpp) | **[Yamaha](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_NEC.h)** | RAV561 remote<BR>RXV585B A/V Receiver | | Yes |
| [Neoclima](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Neoclima.cpp) | **[Neoclima](https://github.com/crankyoldgit/IRremoteESP8266/blob/master/src/ir_Neoclima.h)** | NS-09AHTI A/C<BR>NS-09AHTI A/C<BR>ZH/TY-01 remote<BR>ZH/TY-01 remote | | Yes |
Expand Down Expand Up @@ -108,6 +109,7 @@
- MAGIQUEST
- MIDEA
- MITSUBISHI
- MITSUBISHI136
- MITSUBISHI2
- MITSUBISHI_AC
- MITSUBISHI_HEAVY_152
Expand Down
2 changes: 1 addition & 1 deletion examples/IRMQTTServer/IRMQTTServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const uint16_t kJsonAcStateMaxSize = 1024; // Bytes
// ----------------- End of User Configuration Section -------------------------

// Constants
#define _MY_VERSION_ "v1.4.4-alpha"
#define _MY_VERSION_ "v1.4.4"

const uint8_t kRebootTime = 15; // Seconds
const uint8_t kQuickDisplayTime = 2; // Seconds
Expand Down
67 changes: 66 additions & 1 deletion keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ IRHaierACYRW02 KEYWORD1
IRHitachiAc KEYWORD1
IRKelvinatorAC KEYWORD1
IRMideaAC KEYWORD1
IRMitsubishi136 KEYWORD1
IRMitsubishiAC KEYWORD1
IRMitsubishiHeavy152Ac KEYWORD1
IRMitsubishiHeavy88Ac KEYWORD1
Expand Down Expand Up @@ -162,6 +163,7 @@ decodeMWM KEYWORD2
decodeMagiQuest KEYWORD2
decodeMidea KEYWORD2
decodeMitsubishi KEYWORD2
decodeMitsubishi136 KEYWORD2
decodeMitsubishi2 KEYWORD2
decodeMitsubishiAC KEYWORD2
decodeMitsubishiHeavy KEYWORD2
Expand Down Expand Up @@ -317,8 +319,10 @@ gree KEYWORD2
haier KEYWORD2
haierYrwo2 KEYWORD2
hasACState KEYWORD2
hasStateChanged KEYWORD2
hitachi KEYWORD2
htmlEscape KEYWORD2
initState KEYWORD2
invertBits KEYWORD2
isOffTimerActive KEYWORD2
isOffTimerEnabled KEYWORD2
Expand All @@ -345,6 +349,7 @@ midea KEYWORD2
minRepeats KEYWORD2
minsToString KEYWORD2
mitsubishi KEYWORD2
mitsubishi136 KEYWORD2
mitsubishiHeavy152 KEYWORD2
mitsubishiHeavy88 KEYWORD2
msToString KEYWORD2
Expand Down Expand Up @@ -406,6 +411,7 @@ sendMWM KEYWORD2
sendMagiQuest KEYWORD2
sendMidea KEYWORD2
sendMitsubishi KEYWORD2
sendMitsubishi136 KEYWORD2
sendMitsubishi2 KEYWORD2
sendMitsubishiAC KEYWORD2
sendMitsubishiHeavy152 KEYWORD2
Expand Down Expand Up @@ -594,6 +600,7 @@ ARGO_MIN_TEMP LITERAL1
ARJW2 LITERAL1
ARRAH2E LITERAL1
ARREB1E LITERAL1
ARRY4 LITERAL1
CARRIER_AC LITERAL1
CARRIER_AC_BITS LITERAL1
COOLIX LITERAL1
Expand Down Expand Up @@ -654,6 +661,7 @@ DECODE_LUTRON LITERAL1
DECODE_MAGIQUEST LITERAL1
DECODE_MIDEA LITERAL1
DECODE_MITSUBISHI LITERAL1
DECODE_MITSUBISHI136 LITERAL1
DECODE_MITSUBISHI2 LITERAL1
DECODE_MITSUBISHIHEAVY LITERAL1
DECODE_MITSUBISHI_AC LITERAL1
Expand Down Expand Up @@ -857,6 +865,7 @@ MIDEA_AC_POWER LITERAL1
MIDEA_AC_SLEEP LITERAL1
MIDEA_BITS LITERAL1
MITSUBISHI LITERAL1
MITSUBISHI136 LITERAL1
MITSUBISHI2 LITERAL1
MITSUBISHI_AC LITERAL1
MITSUBISHI_AC_AUTO LITERAL1
Expand Down Expand Up @@ -943,6 +952,7 @@ SEND_LUTRON LITERAL1
SEND_MAGIQUEST LITERAL1
SEND_MIDEA LITERAL1
SEND_MITSUBISHI LITERAL1
SEND_MITSUBISHI136 LITERAL1
SEND_MITSUBISHI2 LITERAL1
SEND_MITSUBISHIHEAVY LITERAL1
SEND_MITSUBISHI_AC LITERAL1
Expand Down Expand Up @@ -1315,6 +1325,7 @@ kDaikin2BitPurify LITERAL1
kDaikin2BitSleepTimer LITERAL1
kDaikin2Bits LITERAL1
kDaikin2DefaultRepeat LITERAL1
kDaikin2FanByte LITERAL1
kDaikin2Freq LITERAL1
kDaikin2Gap LITERAL1
kDaikin2HdrMark LITERAL1
Expand All @@ -1329,12 +1340,19 @@ kDaikin2Section2Length LITERAL1
kDaikin2Sections LITERAL1
kDaikin2StateLength LITERAL1
kDaikin2SwingHAuto LITERAL1
kDaikin2SwingHLeft LITERAL1
kDaikin2SwingHLeftMax LITERAL1
kDaikin2SwingHMiddle LITERAL1
kDaikin2SwingHRight LITERAL1
kDaikin2SwingHRightMax LITERAL1
kDaikin2SwingHSwing LITERAL1
kDaikin2SwingHWide LITERAL1
kDaikin2SwingVAuto LITERAL1
kDaikin2SwingVBreeze LITERAL1
kDaikin2SwingVCirculate LITERAL1
kDaikin2SwingVHigh LITERAL1
kDaikin2SwingVLow LITERAL1
kDaikin2SwingVSwing LITERAL1
kDaikin2Tolerance LITERAL1
kDaikin2ZeroSpace LITERAL1
kDaikinAuto LITERAL1
Expand Down Expand Up @@ -1532,8 +1550,11 @@ kGlobalCacheMinUsec LITERAL1
kGlobalCacheRptIndex LITERAL1
kGlobalCacheRptStartIndex LITERAL1
kGlobalCacheStartIndex LITERAL1
kGoodweatherAirFlowMask LITERAL1
kGoodweatherAuto LITERAL1
kGoodweatherBitAirFlow LITERAL1
kGoodweatherBitCommand LITERAL1
kGoodweatherBitEOF LITERAL1
kGoodweatherBitFan LITERAL1
kGoodweatherBitLight LITERAL1
kGoodweatherBitMark LITERAL1
Expand All @@ -1559,6 +1580,8 @@ kGoodweatherCmdUpTemp LITERAL1
kGoodweatherCommandMask LITERAL1
kGoodweatherCool LITERAL1
kGoodweatherDry LITERAL1
kGoodweatherEOFMask LITERAL1
kGoodweatherExtraTolerance LITERAL1
kGoodweatherFan LITERAL1
kGoodweatherFanAuto LITERAL1
kGoodweatherFanHigh LITERAL1
Expand All @@ -1574,6 +1597,7 @@ kGoodweatherModeMask LITERAL1
kGoodweatherOneSpace LITERAL1
kGoodweatherPowerMask LITERAL1
kGoodweatherSleepMask LITERAL1
kGoodweatherStateInit LITERAL1
kGoodweatherSwingFast LITERAL1
kGoodweatherSwingMask LITERAL1
kGoodweatherSwingOff LITERAL1
Expand Down Expand Up @@ -1938,6 +1962,42 @@ kMideaTolerance LITERAL1
kMideaZeroSpace LITERAL1
kMideaZeroSpaceTicks LITERAL1
kMin LITERAL1
kMitsubishi136Auto LITERAL1
kMitsubishi136BitMark LITERAL1
kMitsubishi136Bits LITERAL1
kMitsubishi136Cool LITERAL1
kMitsubishi136Dry LITERAL1
kMitsubishi136Fan LITERAL1
kMitsubishi136FanByte LITERAL1
kMitsubishi136FanLow LITERAL1
kMitsubishi136FanMask LITERAL1
kMitsubishi136FanMax LITERAL1
kMitsubishi136FanMed LITERAL1
kMitsubishi136FanMin LITERAL1
kMitsubishi136FanQuiet LITERAL1
kMitsubishi136Gap LITERAL1
kMitsubishi136HdrMark LITERAL1
kMitsubishi136HdrSpace LITERAL1
kMitsubishi136Heat LITERAL1
kMitsubishi136MaxTemp LITERAL1
kMitsubishi136MinRepeat LITERAL1
kMitsubishi136MinTemp LITERAL1
kMitsubishi136ModeByte LITERAL1
kMitsubishi136ModeMask LITERAL1
kMitsubishi136OneSpace LITERAL1
kMitsubishi136PowerBit LITERAL1
kMitsubishi136PowerByte LITERAL1
kMitsubishi136StateLength LITERAL1
kMitsubishi136SwingVAuto LITERAL1
kMitsubishi136SwingVByte LITERAL1
kMitsubishi136SwingVHigh LITERAL1
kMitsubishi136SwingVHighest LITERAL1
kMitsubishi136SwingVLow LITERAL1
kMitsubishi136SwingVLowest LITERAL1
kMitsubishi136SwingVMask LITERAL1
kMitsubishi136TempByte LITERAL1
kMitsubishi136TempMask LITERAL1
kMitsubishi136ZeroSpace LITERAL1
kMitsubishi2BitMark LITERAL1
kMitsubishi2HdrMark LITERAL1
kMitsubishi2HdrSpace LITERAL1
Expand All @@ -1951,6 +2011,7 @@ kMitsubishiAcAuto LITERAL1
kMitsubishiAcBitMark LITERAL1
kMitsubishiAcCool LITERAL1
kMitsubishiAcDry LITERAL1
kMitsubishiAcExtraTolerance LITERAL1
kMitsubishiAcFanAuto LITERAL1
kMitsubishiAcFanMax LITERAL1
kMitsubishiAcFanQuiet LITERAL1
Expand Down Expand Up @@ -2197,8 +2258,11 @@ kPanasonicAcSwingHLeft LITERAL1
kPanasonicAcSwingHMiddle LITERAL1
kPanasonicAcSwingHRight LITERAL1
kPanasonicAcSwingVAuto LITERAL1
kPanasonicAcSwingVLowest LITERAL1
kPanasonicAcSwingVHigh LITERAL1
kPanasonicAcSwingVHighest LITERAL1
kPanasonicAcSwingVLow LITERAL1
kPanasonicAcSwingVLowest LITERAL1
kPanasonicAcSwingVMiddle LITERAL1
kPanasonicAcTimeMax LITERAL1
kPanasonicAcTimeSpecial LITERAL1
kPanasonicAcTolerance LITERAL1
Expand Down Expand Up @@ -2513,6 +2577,7 @@ kTecoSleep LITERAL1
kTecoSwing LITERAL1
kTecoTempMask LITERAL1
kTecoTimerHalfH LITERAL1
kTecoTimerMask LITERAL1
kTecoTimerOn LITERAL1
kTecoTimerTenHr LITERAL1
kTecoTimerUniHr LITERAL1
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "IRremoteESP8266",
"version": "2.6.5",
"version": "2.6.6",
"keywords": "infrared, ir, remote, esp8266, esp32",
"description": "Send and receive infrared signals with multiple protocols (ESP8266/ESP32)",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=IRremoteESP8266
version=2.6.5
version=2.6.6
author=David Conran, Sebastien Warin, Mark Szabo, Ken Shirriff
maintainer=Mark Szabo, David Conran, Sebastien Warin, Roi Dayan, Massimiliano Pinto
sentence=Send and receive infrared signals with multiple protocols (ESP8266/ESP32)
Expand Down
2 changes: 1 addition & 1 deletion src/IRremoteESP8266.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#endif // UNIT_TEST

// Library Version
#define _IRREMOTEESP8266_VERSION_ "2.6.5"
#define _IRREMOTEESP8266_VERSION_ "2.6.6"
// Supported IR protocols
// Each protocol you include costs memory and, during decode, costs time
// Disable (set to false) all the protocols you do not need/want!
Expand Down

0 comments on commit 9ca04ad

Please sign in to comment.