├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── Contributors.md ├── ISSUE_TEMPLATE │ └── problem-report.md └── workflows │ ├── Build.yml │ ├── Documentation.yml │ ├── Lint.yml │ ├── MetaChecks.yml │ ├── UnitTests.yml │ └── codeql-analysis.yml ├── .gitignore ├── .style.yapf ├── .vscode └── settings.json ├── CPPLINT.cfg ├── Doxyfile ├── LICENSE.txt ├── README.md ├── README_de.md ├── README_fr.md ├── README_nl.md ├── ReleaseNotes.md ├── SECURITY.md ├── SupportedProtocols.md ├── examples ├── BlynkIrRemote │ ├── BlynkIrRemote.ino │ └── platformio.ini ├── CommonAcControl │ ├── CommonAcControl.ino │ └── platformio.ini ├── ControlSamsungAC │ ├── ControlSamsungAC.ino │ └── platformio.ini ├── DumbIRRepeater │ ├── DumbIRRepeater.ino │ └── platformio.ini ├── IRGCSendDemo │ ├── IRGCSendDemo.ino │ └── platformio.ini ├── IRGCTCPServer │ ├── IRGCTCPServer.ino │ └── platformio.ini ├── IRMQTTServer │ ├── IRMQTTServer.h │ ├── IRMQTTServer.ino │ └── platformio.ini ├── IRServer │ ├── IRServer.ino │ └── platformio.ini ├── IRrecvDemo │ ├── IRrecvDemo.ino │ └── platformio.ini ├── IRrecvDump │ ├── IRrecvDump.ino │ └── platformio.ini ├── IRrecvDumpV2 │ ├── IRrecvDumpV2.ino │ └── platformio.ini ├── IRrecvDumpV3 │ ├── BaseOTA.h │ ├── IRrecvDumpV3.ino │ └── platformio.ini ├── IRsendDemo │ ├── IRsendDemo.ino │ └── platformio.ini ├── IRsendProntoDemo │ ├── IRsendProntoDemo.ino │ └── platformio.ini ├── JVCPanasonicSendDemo │ ├── JVCPanasonicSendDemo.ino │ └── platformio.ini ├── LGACSend │ ├── LGACSend.ino │ └── platformio.ini ├── SmartIRRepeater │ ├── SmartIRRepeater.ino │ └── platformio.ini ├── TurnOnArgoAC │ ├── TurnOnArgoAC.ino │ └── platformio.ini ├── TurnOnDaikinAC │ ├── TurnOnDaikinAC.ino │ └── platformio.ini ├── TurnOnFujitsuAC │ ├── TurnOnFujitsuAC.ino │ └── platformio.ini ├── TurnOnGreeAC │ ├── TurnOnGreeAC.ino │ └── platformio.ini ├── TurnOnKelvinatorAC │ ├── TurnOnKelvinatorAC.ino │ └── platformio.ini ├── TurnOnMitsubishiAC │ ├── TurnOnMitsubishiAC.ino │ └── platformio.ini ├── TurnOnMitsubishiHeavyAc │ ├── TurnOnMitsubishiHeavyAc.ino │ └── platformio.ini ├── TurnOnPanasonicAC │ ├── TurnOnPanasonicAC.ino │ └── platformio.ini ├── TurnOnToshibaAC │ ├── TurnOnToshibaAC.ino │ └── platformio.ini ├── TurnOnTrotecAC │ ├── TurnOnTrotecAC.ino │ └── platformio.ini └── Web-AC-control │ ├── README.md │ ├── Web-AC-control.h │ ├── Web-AC-control.ino │ ├── data │ ├── favicon.ico │ ├── level_1_off.svg │ ├── level_1_on.svg │ ├── level_2_off.svg │ ├── level_2_on.svg │ ├── level_3_off.svg │ ├── level_3_on.svg │ ├── level_4_off.svg │ ├── level_4_on.svg │ ├── ui.html │ └── ui.js │ ├── platformio.ini │ └── printscreen.png ├── keywords.txt ├── library.json ├── library.properties ├── platformio.ini ├── pylintrc ├── src ├── CPPLINT.cfg ├── IRac.cpp ├── IRac.h ├── IRmacros.h ├── IRrecv.cpp ├── IRrecv.h ├── IRremoteESP8266.h ├── IRsend.cpp ├── IRsend.h ├── IRtext.cpp ├── IRtext.h ├── IRtimer.cpp ├── IRtimer.h ├── IRutils.cpp ├── IRutils.h ├── i18n.h ├── ir_Airton.cpp ├── ir_Airton.h ├── ir_Airwell.cpp ├── ir_Airwell.h ├── ir_Aiwa.cpp ├── ir_Amcor.cpp ├── ir_Amcor.h ├── ir_Argo.cpp ├── ir_Argo.h ├── ir_Arris.cpp ├── ir_BluestarHeavy.cpp ├── ir_Bosch.cpp ├── ir_Bosch.h ├── ir_Bose.cpp ├── ir_Carrier.cpp ├── ir_Carrier.h ├── ir_ClimaButler.cpp ├── ir_Coolix.cpp ├── ir_Coolix.h ├── ir_Corona.cpp ├── ir_Corona.h ├── ir_Daikin.cpp ├── ir_Daikin.h ├── ir_Delonghi.cpp ├── ir_Delonghi.h ├── ir_Denon.cpp ├── ir_Dish.cpp ├── ir_Doshisha.cpp ├── ir_Ecoclim.cpp ├── ir_Ecoclim.h ├── ir_Electra.cpp ├── ir_Electra.h ├── ir_EliteScreens.cpp ├── ir_Epson.cpp ├── ir_Fujitsu.cpp ├── ir_Fujitsu.h ├── ir_GICable.cpp ├── ir_GlobalCache.cpp ├── ir_Goodweather.cpp ├── ir_Goodweather.h ├── ir_Gorenje.cpp ├── ir_Gree.cpp ├── ir_Gree.h ├── ir_Haier.cpp ├── ir_Haier.h ├── ir_Hitachi.cpp ├── ir_Hitachi.h ├── ir_Inax.cpp ├── ir_JVC.cpp ├── ir_Kelon.cpp ├── ir_Kelon.h ├── ir_Kelvinator.cpp ├── ir_Kelvinator.h ├── ir_LG.cpp ├── ir_LG.h ├── ir_Lasertag.cpp ├── ir_Lego.cpp ├── ir_Lutron.cpp ├── ir_MWM.cpp ├── ir_Magiquest.cpp ├── ir_Magiquest.h ├── ir_Metz.cpp ├── ir_Midea.cpp ├── ir_Midea.h ├── ir_MilesTag2.cpp ├── ir_Mirage.cpp ├── ir_Mirage.h ├── ir_Mitsubishi.cpp ├── ir_Mitsubishi.h ├── ir_MitsubishiHeavy.cpp ├── ir_MitsubishiHeavy.h ├── ir_Multibrackets.cpp ├── ir_NEC.cpp ├── ir_NEC.h ├── ir_Neoclima.cpp ├── ir_Neoclima.h ├── ir_Nikai.cpp ├── ir_Panasonic.cpp ├── ir_Panasonic.h ├── ir_Pioneer.cpp ├── ir_Pronto.cpp ├── ir_RC5_RC6.cpp ├── ir_RCMM.cpp ├── ir_Rhoss.cpp ├── ir_Rhoss.h ├── ir_Samsung.cpp ├── ir_Samsung.h ├── ir_Sanyo.cpp ├── ir_Sanyo.h ├── ir_Sharp.cpp ├── ir_Sharp.h ├── ir_Sherwood.cpp ├── ir_Sony.cpp ├── ir_Symphony.cpp ├── ir_Tcl.cpp ├── ir_Tcl.h ├── ir_Technibel.cpp ├── ir_Technibel.h ├── ir_Teco.cpp ├── ir_Teco.h ├── ir_Teknopoint.cpp ├── ir_Toshiba.cpp ├── ir_Toshiba.h ├── ir_Toto.cpp ├── ir_Transcold.cpp ├── ir_Transcold.h ├── ir_Trotec.cpp ├── ir_Trotec.h ├── ir_Truma.cpp ├── ir_Truma.h ├── ir_Vestel.cpp ├── ir_Vestel.h ├── ir_Voltas.cpp ├── ir_Voltas.h ├── ir_Whirlpool.cpp ├── ir_Whirlpool.h ├── ir_Whynter.cpp ├── ir_Wowwee.cpp ├── ir_Xmp.cpp ├── ir_York.cpp ├── ir_York.h ├── ir_Zepeal.cpp └── locale │ ├── README.md │ ├── de-CH.h │ ├── de-DE.h │ ├── defaults.h │ ├── en-AU.h │ ├── en-IE.h │ ├── en-UK.h │ ├── en-US.h │ ├── es-ES.h │ ├── fr-FR.h │ ├── it-IT.h │ ├── nl-NL.h │ ├── pt-BR.h │ ├── ru-RU.h │ ├── sk-SK.h │ ├── sv-SE.h │ └── zh-CN.h ├── test ├── IRac_test.cpp ├── IRrecv_test.cpp ├── IRrecv_test.h ├── IRsend_test.cpp ├── IRsend_test.h ├── IRutils_test.cpp ├── Makefile ├── ir_Airton_test.cpp ├── ir_Airwell_test.cpp ├── ir_Aiwa_test.cpp ├── ir_Amcor_test.cpp ├── ir_Argo_test.cpp ├── ir_Arris_test.cpp ├── ir_Bosch_test.cpp ├── ir_Bose_test.cpp ├── ir_Carrier_test.cpp ├── ir_ClimaButler_test.cpp ├── ir_Coolix_test.cpp ├── ir_Corona_test.cpp ├── ir_Daikin_test.cpp ├── ir_Delonghi_test.cpp ├── ir_Denon_test.cpp ├── ir_Dish_test.cpp ├── ir_Doshisha_test.cpp ├── ir_Ecoclim_test.cpp ├── ir_Electra_test.cpp ├── ir_EliteScreens_test.cpp ├── ir_Epson_test.cpp ├── ir_Fujitsu_test.cpp ├── ir_GICable_test.cpp ├── ir_GlobalCache_test.cpp ├── ir_Goodweather_test.cpp ├── ir_Gorenje_test.cpp ├── ir_Gree_test.cpp ├── ir_Haier_test.cpp ├── ir_Hitachi_test.cpp ├── ir_Inax_test.cpp ├── ir_JVC_test.cpp ├── ir_Kelon_test.cpp ├── ir_Kelvinator_test.cpp ├── ir_LG_test.cpp ├── ir_Lasertag_test.cpp ├── ir_Lego_test.cpp ├── ir_Lutron_test.cpp ├── ir_MWM_test.cpp ├── ir_Magiquest_test.cpp ├── ir_Metz_test.cpp ├── ir_Midea_test.cpp ├── ir_Milestag2_test.cpp ├── ir_Mirage_test.cpp ├── ir_MitsubishiHeavy_test.cpp ├── ir_Mitsubishi_test.cpp ├── ir_Multibrackets_test.cpp ├── ir_NEC_test.cpp ├── ir_Neoclima_test.cpp ├── ir_Nikai_test.cpp ├── ir_Panasonic_test.cpp ├── ir_Pioneer_test.cpp ├── ir_Pronto_test.cpp ├── ir_RC5_RC6_test.cpp ├── ir_RCMM_test.cpp ├── ir_Rhoss_test.cpp ├── ir_Samsung_test.cpp ├── ir_Sanyo_test.cpp ├── ir_Sharp_test.cpp ├── ir_Sherwood_test.cpp ├── ir_Sony_test.cpp ├── ir_Symphony_test.cpp ├── ir_Tcl_test.cpp ├── ir_Technibel_test.cpp ├── ir_Teco_test.cpp ├── ir_Teknopoint_test.cpp ├── ir_Toshiba_test.cpp ├── ir_Toto_test.cpp ├── ir_Transcold_test.cpp ├── ir_Trotec_test.cpp ├── ir_Truma_test.cpp ├── ir_Vestel_test.cpp ├── ir_Voltas_test.cpp ├── ir_Whirlpool_test.cpp ├── ir_Whynter_test.cpp ├── ir_Wowwee_test.cpp ├── ir_Xmp_test.cpp ├── ir_York_test.cpp ├── ir_Zepeal_test.cpp └── ut_utils.h └── tools ├── Makefile ├── RawToGlobalCache.sh ├── auto_analyse_raw_data.py ├── auto_analyse_raw_data_test.py ├── code_to_raw.cpp ├── code_to_raw_test.sh ├── extract_lib_version.sh ├── gc_decode.cpp ├── generate_irtext_h.sh ├── mkkeywords ├── mode2_decode.cpp ├── raw_to_pronto_code.py ├── raw_to_pronto_code_test.py └── scrape_supported_devices.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/Contributors.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/problem-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/ISSUE_TEMPLATE/problem-report.md -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.github/workflows/Documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/Documentation.yml -------------------------------------------------------------------------------- /.github/workflows/Lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/Lint.yml -------------------------------------------------------------------------------- /.github/workflows/MetaChecks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/MetaChecks.yml -------------------------------------------------------------------------------- /.github/workflows/UnitTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/UnitTests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.style.yapf -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/CPPLINT.cfg -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/README.md -------------------------------------------------------------------------------- /README_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/README_de.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/README_fr.md -------------------------------------------------------------------------------- /README_nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/README_nl.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SupportedProtocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/SupportedProtocols.md -------------------------------------------------------------------------------- /examples/BlynkIrRemote/BlynkIrRemote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/BlynkIrRemote/BlynkIrRemote.ino -------------------------------------------------------------------------------- /examples/BlynkIrRemote/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/BlynkIrRemote/platformio.ini -------------------------------------------------------------------------------- /examples/CommonAcControl/CommonAcControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/CommonAcControl/CommonAcControl.ino -------------------------------------------------------------------------------- /examples/CommonAcControl/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/CommonAcControl/platformio.ini -------------------------------------------------------------------------------- /examples/ControlSamsungAC/ControlSamsungAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/ControlSamsungAC/ControlSamsungAC.ino -------------------------------------------------------------------------------- /examples/ControlSamsungAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/ControlSamsungAC/platformio.ini -------------------------------------------------------------------------------- /examples/DumbIRRepeater/DumbIRRepeater.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/DumbIRRepeater/DumbIRRepeater.ino -------------------------------------------------------------------------------- /examples/DumbIRRepeater/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/DumbIRRepeater/platformio.ini -------------------------------------------------------------------------------- /examples/IRGCSendDemo/IRGCSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRGCSendDemo/IRGCSendDemo.ino -------------------------------------------------------------------------------- /examples/IRGCSendDemo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRGCSendDemo/platformio.ini -------------------------------------------------------------------------------- /examples/IRGCTCPServer/IRGCTCPServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRGCTCPServer/IRGCTCPServer.ino -------------------------------------------------------------------------------- /examples/IRGCTCPServer/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRGCTCPServer/platformio.ini -------------------------------------------------------------------------------- /examples/IRMQTTServer/IRMQTTServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRMQTTServer/IRMQTTServer.h -------------------------------------------------------------------------------- /examples/IRMQTTServer/IRMQTTServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRMQTTServer/IRMQTTServer.ino -------------------------------------------------------------------------------- /examples/IRMQTTServer/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRMQTTServer/platformio.ini -------------------------------------------------------------------------------- /examples/IRServer/IRServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRServer/IRServer.ino -------------------------------------------------------------------------------- /examples/IRServer/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRServer/platformio.ini -------------------------------------------------------------------------------- /examples/IRrecvDemo/IRrecvDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDemo/IRrecvDemo.ino -------------------------------------------------------------------------------- /examples/IRrecvDemo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDemo/platformio.ini -------------------------------------------------------------------------------- /examples/IRrecvDump/IRrecvDump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDump/IRrecvDump.ino -------------------------------------------------------------------------------- /examples/IRrecvDump/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDump/platformio.ini -------------------------------------------------------------------------------- /examples/IRrecvDumpV2/IRrecvDumpV2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDumpV2/IRrecvDumpV2.ino -------------------------------------------------------------------------------- /examples/IRrecvDumpV2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDumpV2/platformio.ini -------------------------------------------------------------------------------- /examples/IRrecvDumpV3/BaseOTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDumpV3/BaseOTA.h -------------------------------------------------------------------------------- /examples/IRrecvDumpV3/IRrecvDumpV3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDumpV3/IRrecvDumpV3.ino -------------------------------------------------------------------------------- /examples/IRrecvDumpV3/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRrecvDumpV3/platformio.ini -------------------------------------------------------------------------------- /examples/IRsendDemo/IRsendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRsendDemo/IRsendDemo.ino -------------------------------------------------------------------------------- /examples/IRsendDemo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRsendDemo/platformio.ini -------------------------------------------------------------------------------- /examples/IRsendProntoDemo/IRsendProntoDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRsendProntoDemo/IRsendProntoDemo.ino -------------------------------------------------------------------------------- /examples/IRsendProntoDemo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/IRsendProntoDemo/platformio.ini -------------------------------------------------------------------------------- /examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino -------------------------------------------------------------------------------- /examples/JVCPanasonicSendDemo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/JVCPanasonicSendDemo/platformio.ini -------------------------------------------------------------------------------- /examples/LGACSend/LGACSend.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/LGACSend/LGACSend.ino -------------------------------------------------------------------------------- /examples/LGACSend/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/LGACSend/platformio.ini -------------------------------------------------------------------------------- /examples/SmartIRRepeater/SmartIRRepeater.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/SmartIRRepeater/SmartIRRepeater.ino -------------------------------------------------------------------------------- /examples/SmartIRRepeater/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/SmartIRRepeater/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnArgoAC/TurnOnArgoAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnArgoAC/TurnOnArgoAC.ino -------------------------------------------------------------------------------- /examples/TurnOnArgoAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnArgoAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnDaikinAC/TurnOnDaikinAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnDaikinAC/TurnOnDaikinAC.ino -------------------------------------------------------------------------------- /examples/TurnOnDaikinAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnDaikinAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnFujitsuAC/TurnOnFujitsuAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnFujitsuAC/TurnOnFujitsuAC.ino -------------------------------------------------------------------------------- /examples/TurnOnFujitsuAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnFujitsuAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnGreeAC/TurnOnGreeAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnGreeAC/TurnOnGreeAC.ino -------------------------------------------------------------------------------- /examples/TurnOnGreeAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnGreeAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnKelvinatorAC/TurnOnKelvinatorAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnKelvinatorAC/TurnOnKelvinatorAC.ino -------------------------------------------------------------------------------- /examples/TurnOnKelvinatorAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnKelvinatorAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnMitsubishiAC/TurnOnMitsubishiAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnMitsubishiAC/TurnOnMitsubishiAC.ino -------------------------------------------------------------------------------- /examples/TurnOnMitsubishiAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnMitsubishiAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnMitsubishiHeavyAc/TurnOnMitsubishiHeavyAc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnMitsubishiHeavyAc/TurnOnMitsubishiHeavyAc.ino -------------------------------------------------------------------------------- /examples/TurnOnMitsubishiHeavyAc/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnMitsubishiHeavyAc/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnPanasonicAC/TurnOnPanasonicAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnPanasonicAC/TurnOnPanasonicAC.ino -------------------------------------------------------------------------------- /examples/TurnOnPanasonicAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnPanasonicAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnToshibaAC/TurnOnToshibaAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnToshibaAC/TurnOnToshibaAC.ino -------------------------------------------------------------------------------- /examples/TurnOnToshibaAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnToshibaAC/platformio.ini -------------------------------------------------------------------------------- /examples/TurnOnTrotecAC/TurnOnTrotecAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnTrotecAC/TurnOnTrotecAC.ino -------------------------------------------------------------------------------- /examples/TurnOnTrotecAC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/TurnOnTrotecAC/platformio.ini -------------------------------------------------------------------------------- /examples/Web-AC-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/README.md -------------------------------------------------------------------------------- /examples/Web-AC-control/Web-AC-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/Web-AC-control.h -------------------------------------------------------------------------------- /examples/Web-AC-control/Web-AC-control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/Web-AC-control.ino -------------------------------------------------------------------------------- /examples/Web-AC-control/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/favicon.ico -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_1_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_1_off.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_1_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_1_on.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_2_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_2_off.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_2_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_2_on.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_3_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_3_off.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_3_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_3_on.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_4_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_4_off.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/level_4_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/level_4_on.svg -------------------------------------------------------------------------------- /examples/Web-AC-control/data/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/ui.html -------------------------------------------------------------------------------- /examples/Web-AC-control/data/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/data/ui.js -------------------------------------------------------------------------------- /examples/Web-AC-control/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/platformio.ini -------------------------------------------------------------------------------- /examples/Web-AC-control/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/examples/Web-AC-control/printscreen.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/platformio.ini -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/pylintrc -------------------------------------------------------------------------------- /src/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/CPPLINT.cfg -------------------------------------------------------------------------------- /src/IRac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRac.cpp -------------------------------------------------------------------------------- /src/IRac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRac.h -------------------------------------------------------------------------------- /src/IRmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRmacros.h -------------------------------------------------------------------------------- /src/IRrecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRrecv.cpp -------------------------------------------------------------------------------- /src/IRrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRrecv.h -------------------------------------------------------------------------------- /src/IRremoteESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRremoteESP8266.h -------------------------------------------------------------------------------- /src/IRsend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRsend.cpp -------------------------------------------------------------------------------- /src/IRsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRsend.h -------------------------------------------------------------------------------- /src/IRtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRtext.cpp -------------------------------------------------------------------------------- /src/IRtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRtext.h -------------------------------------------------------------------------------- /src/IRtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRtimer.cpp -------------------------------------------------------------------------------- /src/IRtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRtimer.h -------------------------------------------------------------------------------- /src/IRutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRutils.cpp -------------------------------------------------------------------------------- /src/IRutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/IRutils.h -------------------------------------------------------------------------------- /src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/i18n.h -------------------------------------------------------------------------------- /src/ir_Airton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Airton.cpp -------------------------------------------------------------------------------- /src/ir_Airton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Airton.h -------------------------------------------------------------------------------- /src/ir_Airwell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Airwell.cpp -------------------------------------------------------------------------------- /src/ir_Airwell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Airwell.h -------------------------------------------------------------------------------- /src/ir_Aiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Aiwa.cpp -------------------------------------------------------------------------------- /src/ir_Amcor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Amcor.cpp -------------------------------------------------------------------------------- /src/ir_Amcor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Amcor.h -------------------------------------------------------------------------------- /src/ir_Argo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Argo.cpp -------------------------------------------------------------------------------- /src/ir_Argo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Argo.h -------------------------------------------------------------------------------- /src/ir_Arris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Arris.cpp -------------------------------------------------------------------------------- /src/ir_BluestarHeavy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_BluestarHeavy.cpp -------------------------------------------------------------------------------- /src/ir_Bosch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Bosch.cpp -------------------------------------------------------------------------------- /src/ir_Bosch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Bosch.h -------------------------------------------------------------------------------- /src/ir_Bose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Bose.cpp -------------------------------------------------------------------------------- /src/ir_Carrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Carrier.cpp -------------------------------------------------------------------------------- /src/ir_Carrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Carrier.h -------------------------------------------------------------------------------- /src/ir_ClimaButler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_ClimaButler.cpp -------------------------------------------------------------------------------- /src/ir_Coolix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Coolix.cpp -------------------------------------------------------------------------------- /src/ir_Coolix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Coolix.h -------------------------------------------------------------------------------- /src/ir_Corona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Corona.cpp -------------------------------------------------------------------------------- /src/ir_Corona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Corona.h -------------------------------------------------------------------------------- /src/ir_Daikin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Daikin.cpp -------------------------------------------------------------------------------- /src/ir_Daikin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Daikin.h -------------------------------------------------------------------------------- /src/ir_Delonghi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Delonghi.cpp -------------------------------------------------------------------------------- /src/ir_Delonghi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Delonghi.h -------------------------------------------------------------------------------- /src/ir_Denon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Denon.cpp -------------------------------------------------------------------------------- /src/ir_Dish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Dish.cpp -------------------------------------------------------------------------------- /src/ir_Doshisha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Doshisha.cpp -------------------------------------------------------------------------------- /src/ir_Ecoclim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Ecoclim.cpp -------------------------------------------------------------------------------- /src/ir_Ecoclim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Ecoclim.h -------------------------------------------------------------------------------- /src/ir_Electra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Electra.cpp -------------------------------------------------------------------------------- /src/ir_Electra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Electra.h -------------------------------------------------------------------------------- /src/ir_EliteScreens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_EliteScreens.cpp -------------------------------------------------------------------------------- /src/ir_Epson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Epson.cpp -------------------------------------------------------------------------------- /src/ir_Fujitsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Fujitsu.cpp -------------------------------------------------------------------------------- /src/ir_Fujitsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Fujitsu.h -------------------------------------------------------------------------------- /src/ir_GICable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_GICable.cpp -------------------------------------------------------------------------------- /src/ir_GlobalCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_GlobalCache.cpp -------------------------------------------------------------------------------- /src/ir_Goodweather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Goodweather.cpp -------------------------------------------------------------------------------- /src/ir_Goodweather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Goodweather.h -------------------------------------------------------------------------------- /src/ir_Gorenje.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Gorenje.cpp -------------------------------------------------------------------------------- /src/ir_Gree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Gree.cpp -------------------------------------------------------------------------------- /src/ir_Gree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Gree.h -------------------------------------------------------------------------------- /src/ir_Haier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Haier.cpp -------------------------------------------------------------------------------- /src/ir_Haier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Haier.h -------------------------------------------------------------------------------- /src/ir_Hitachi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Hitachi.cpp -------------------------------------------------------------------------------- /src/ir_Hitachi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Hitachi.h -------------------------------------------------------------------------------- /src/ir_Inax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Inax.cpp -------------------------------------------------------------------------------- /src/ir_JVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_JVC.cpp -------------------------------------------------------------------------------- /src/ir_Kelon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Kelon.cpp -------------------------------------------------------------------------------- /src/ir_Kelon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Kelon.h -------------------------------------------------------------------------------- /src/ir_Kelvinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Kelvinator.cpp -------------------------------------------------------------------------------- /src/ir_Kelvinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Kelvinator.h -------------------------------------------------------------------------------- /src/ir_LG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_LG.cpp -------------------------------------------------------------------------------- /src/ir_LG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_LG.h -------------------------------------------------------------------------------- /src/ir_Lasertag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Lasertag.cpp -------------------------------------------------------------------------------- /src/ir_Lego.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Lego.cpp -------------------------------------------------------------------------------- /src/ir_Lutron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Lutron.cpp -------------------------------------------------------------------------------- /src/ir_MWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_MWM.cpp -------------------------------------------------------------------------------- /src/ir_Magiquest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Magiquest.cpp -------------------------------------------------------------------------------- /src/ir_Magiquest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Magiquest.h -------------------------------------------------------------------------------- /src/ir_Metz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Metz.cpp -------------------------------------------------------------------------------- /src/ir_Midea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Midea.cpp -------------------------------------------------------------------------------- /src/ir_Midea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Midea.h -------------------------------------------------------------------------------- /src/ir_MilesTag2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_MilesTag2.cpp -------------------------------------------------------------------------------- /src/ir_Mirage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Mirage.cpp -------------------------------------------------------------------------------- /src/ir_Mirage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Mirage.h -------------------------------------------------------------------------------- /src/ir_Mitsubishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Mitsubishi.cpp -------------------------------------------------------------------------------- /src/ir_Mitsubishi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Mitsubishi.h -------------------------------------------------------------------------------- /src/ir_MitsubishiHeavy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_MitsubishiHeavy.cpp -------------------------------------------------------------------------------- /src/ir_MitsubishiHeavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_MitsubishiHeavy.h -------------------------------------------------------------------------------- /src/ir_Multibrackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Multibrackets.cpp -------------------------------------------------------------------------------- /src/ir_NEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_NEC.cpp -------------------------------------------------------------------------------- /src/ir_NEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_NEC.h -------------------------------------------------------------------------------- /src/ir_Neoclima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Neoclima.cpp -------------------------------------------------------------------------------- /src/ir_Neoclima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Neoclima.h -------------------------------------------------------------------------------- /src/ir_Nikai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Nikai.cpp -------------------------------------------------------------------------------- /src/ir_Panasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Panasonic.cpp -------------------------------------------------------------------------------- /src/ir_Panasonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Panasonic.h -------------------------------------------------------------------------------- /src/ir_Pioneer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Pioneer.cpp -------------------------------------------------------------------------------- /src/ir_Pronto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Pronto.cpp -------------------------------------------------------------------------------- /src/ir_RC5_RC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_RC5_RC6.cpp -------------------------------------------------------------------------------- /src/ir_RCMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_RCMM.cpp -------------------------------------------------------------------------------- /src/ir_Rhoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Rhoss.cpp -------------------------------------------------------------------------------- /src/ir_Rhoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Rhoss.h -------------------------------------------------------------------------------- /src/ir_Samsung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Samsung.cpp -------------------------------------------------------------------------------- /src/ir_Samsung.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Samsung.h -------------------------------------------------------------------------------- /src/ir_Sanyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sanyo.cpp -------------------------------------------------------------------------------- /src/ir_Sanyo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sanyo.h -------------------------------------------------------------------------------- /src/ir_Sharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sharp.cpp -------------------------------------------------------------------------------- /src/ir_Sharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sharp.h -------------------------------------------------------------------------------- /src/ir_Sherwood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sherwood.cpp -------------------------------------------------------------------------------- /src/ir_Sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Sony.cpp -------------------------------------------------------------------------------- /src/ir_Symphony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Symphony.cpp -------------------------------------------------------------------------------- /src/ir_Tcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Tcl.cpp -------------------------------------------------------------------------------- /src/ir_Tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Tcl.h -------------------------------------------------------------------------------- /src/ir_Technibel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Technibel.cpp -------------------------------------------------------------------------------- /src/ir_Technibel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Technibel.h -------------------------------------------------------------------------------- /src/ir_Teco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Teco.cpp -------------------------------------------------------------------------------- /src/ir_Teco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Teco.h -------------------------------------------------------------------------------- /src/ir_Teknopoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Teknopoint.cpp -------------------------------------------------------------------------------- /src/ir_Toshiba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Toshiba.cpp -------------------------------------------------------------------------------- /src/ir_Toshiba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Toshiba.h -------------------------------------------------------------------------------- /src/ir_Toto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Toto.cpp -------------------------------------------------------------------------------- /src/ir_Transcold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Transcold.cpp -------------------------------------------------------------------------------- /src/ir_Transcold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Transcold.h -------------------------------------------------------------------------------- /src/ir_Trotec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Trotec.cpp -------------------------------------------------------------------------------- /src/ir_Trotec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Trotec.h -------------------------------------------------------------------------------- /src/ir_Truma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Truma.cpp -------------------------------------------------------------------------------- /src/ir_Truma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Truma.h -------------------------------------------------------------------------------- /src/ir_Vestel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Vestel.cpp -------------------------------------------------------------------------------- /src/ir_Vestel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Vestel.h -------------------------------------------------------------------------------- /src/ir_Voltas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Voltas.cpp -------------------------------------------------------------------------------- /src/ir_Voltas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Voltas.h -------------------------------------------------------------------------------- /src/ir_Whirlpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Whirlpool.cpp -------------------------------------------------------------------------------- /src/ir_Whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Whirlpool.h -------------------------------------------------------------------------------- /src/ir_Whynter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Whynter.cpp -------------------------------------------------------------------------------- /src/ir_Wowwee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Wowwee.cpp -------------------------------------------------------------------------------- /src/ir_Xmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Xmp.cpp -------------------------------------------------------------------------------- /src/ir_York.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_York.cpp -------------------------------------------------------------------------------- /src/ir_York.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_York.h -------------------------------------------------------------------------------- /src/ir_Zepeal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/ir_Zepeal.cpp -------------------------------------------------------------------------------- /src/locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/README.md -------------------------------------------------------------------------------- /src/locale/de-CH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/de-CH.h -------------------------------------------------------------------------------- /src/locale/de-DE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/de-DE.h -------------------------------------------------------------------------------- /src/locale/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/defaults.h -------------------------------------------------------------------------------- /src/locale/en-AU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/en-AU.h -------------------------------------------------------------------------------- /src/locale/en-IE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/en-IE.h -------------------------------------------------------------------------------- /src/locale/en-UK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/en-UK.h -------------------------------------------------------------------------------- /src/locale/en-US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/en-US.h -------------------------------------------------------------------------------- /src/locale/es-ES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/es-ES.h -------------------------------------------------------------------------------- /src/locale/fr-FR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/fr-FR.h -------------------------------------------------------------------------------- /src/locale/it-IT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/it-IT.h -------------------------------------------------------------------------------- /src/locale/nl-NL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/nl-NL.h -------------------------------------------------------------------------------- /src/locale/pt-BR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/pt-BR.h -------------------------------------------------------------------------------- /src/locale/ru-RU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/ru-RU.h -------------------------------------------------------------------------------- /src/locale/sk-SK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/sk-SK.h -------------------------------------------------------------------------------- /src/locale/sv-SE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/sv-SE.h -------------------------------------------------------------------------------- /src/locale/zh-CN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/src/locale/zh-CN.h -------------------------------------------------------------------------------- /test/IRac_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRac_test.cpp -------------------------------------------------------------------------------- /test/IRrecv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRrecv_test.cpp -------------------------------------------------------------------------------- /test/IRrecv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRrecv_test.h -------------------------------------------------------------------------------- /test/IRsend_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRsend_test.cpp -------------------------------------------------------------------------------- /test/IRsend_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRsend_test.h -------------------------------------------------------------------------------- /test/IRutils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/IRutils_test.cpp -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/ir_Airton_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Airton_test.cpp -------------------------------------------------------------------------------- /test/ir_Airwell_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Airwell_test.cpp -------------------------------------------------------------------------------- /test/ir_Aiwa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Aiwa_test.cpp -------------------------------------------------------------------------------- /test/ir_Amcor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Amcor_test.cpp -------------------------------------------------------------------------------- /test/ir_Argo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Argo_test.cpp -------------------------------------------------------------------------------- /test/ir_Arris_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Arris_test.cpp -------------------------------------------------------------------------------- /test/ir_Bosch_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Bosch_test.cpp -------------------------------------------------------------------------------- /test/ir_Bose_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Bose_test.cpp -------------------------------------------------------------------------------- /test/ir_Carrier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Carrier_test.cpp -------------------------------------------------------------------------------- /test/ir_ClimaButler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_ClimaButler_test.cpp -------------------------------------------------------------------------------- /test/ir_Coolix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Coolix_test.cpp -------------------------------------------------------------------------------- /test/ir_Corona_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Corona_test.cpp -------------------------------------------------------------------------------- /test/ir_Daikin_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Daikin_test.cpp -------------------------------------------------------------------------------- /test/ir_Delonghi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Delonghi_test.cpp -------------------------------------------------------------------------------- /test/ir_Denon_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Denon_test.cpp -------------------------------------------------------------------------------- /test/ir_Dish_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Dish_test.cpp -------------------------------------------------------------------------------- /test/ir_Doshisha_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Doshisha_test.cpp -------------------------------------------------------------------------------- /test/ir_Ecoclim_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Ecoclim_test.cpp -------------------------------------------------------------------------------- /test/ir_Electra_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Electra_test.cpp -------------------------------------------------------------------------------- /test/ir_EliteScreens_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_EliteScreens_test.cpp -------------------------------------------------------------------------------- /test/ir_Epson_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Epson_test.cpp -------------------------------------------------------------------------------- /test/ir_Fujitsu_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Fujitsu_test.cpp -------------------------------------------------------------------------------- /test/ir_GICable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_GICable_test.cpp -------------------------------------------------------------------------------- /test/ir_GlobalCache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_GlobalCache_test.cpp -------------------------------------------------------------------------------- /test/ir_Goodweather_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Goodweather_test.cpp -------------------------------------------------------------------------------- /test/ir_Gorenje_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Gorenje_test.cpp -------------------------------------------------------------------------------- /test/ir_Gree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Gree_test.cpp -------------------------------------------------------------------------------- /test/ir_Haier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Haier_test.cpp -------------------------------------------------------------------------------- /test/ir_Hitachi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Hitachi_test.cpp -------------------------------------------------------------------------------- /test/ir_Inax_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Inax_test.cpp -------------------------------------------------------------------------------- /test/ir_JVC_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_JVC_test.cpp -------------------------------------------------------------------------------- /test/ir_Kelon_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Kelon_test.cpp -------------------------------------------------------------------------------- /test/ir_Kelvinator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Kelvinator_test.cpp -------------------------------------------------------------------------------- /test/ir_LG_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_LG_test.cpp -------------------------------------------------------------------------------- /test/ir_Lasertag_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Lasertag_test.cpp -------------------------------------------------------------------------------- /test/ir_Lego_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Lego_test.cpp -------------------------------------------------------------------------------- /test/ir_Lutron_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Lutron_test.cpp -------------------------------------------------------------------------------- /test/ir_MWM_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_MWM_test.cpp -------------------------------------------------------------------------------- /test/ir_Magiquest_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Magiquest_test.cpp -------------------------------------------------------------------------------- /test/ir_Metz_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Metz_test.cpp -------------------------------------------------------------------------------- /test/ir_Midea_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Midea_test.cpp -------------------------------------------------------------------------------- /test/ir_Milestag2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Milestag2_test.cpp -------------------------------------------------------------------------------- /test/ir_Mirage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Mirage_test.cpp -------------------------------------------------------------------------------- /test/ir_MitsubishiHeavy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_MitsubishiHeavy_test.cpp -------------------------------------------------------------------------------- /test/ir_Mitsubishi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Mitsubishi_test.cpp -------------------------------------------------------------------------------- /test/ir_Multibrackets_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Multibrackets_test.cpp -------------------------------------------------------------------------------- /test/ir_NEC_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_NEC_test.cpp -------------------------------------------------------------------------------- /test/ir_Neoclima_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Neoclima_test.cpp -------------------------------------------------------------------------------- /test/ir_Nikai_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Nikai_test.cpp -------------------------------------------------------------------------------- /test/ir_Panasonic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Panasonic_test.cpp -------------------------------------------------------------------------------- /test/ir_Pioneer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Pioneer_test.cpp -------------------------------------------------------------------------------- /test/ir_Pronto_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Pronto_test.cpp -------------------------------------------------------------------------------- /test/ir_RC5_RC6_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_RC5_RC6_test.cpp -------------------------------------------------------------------------------- /test/ir_RCMM_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_RCMM_test.cpp -------------------------------------------------------------------------------- /test/ir_Rhoss_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Rhoss_test.cpp -------------------------------------------------------------------------------- /test/ir_Samsung_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Samsung_test.cpp -------------------------------------------------------------------------------- /test/ir_Sanyo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Sanyo_test.cpp -------------------------------------------------------------------------------- /test/ir_Sharp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Sharp_test.cpp -------------------------------------------------------------------------------- /test/ir_Sherwood_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Sherwood_test.cpp -------------------------------------------------------------------------------- /test/ir_Sony_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Sony_test.cpp -------------------------------------------------------------------------------- /test/ir_Symphony_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Symphony_test.cpp -------------------------------------------------------------------------------- /test/ir_Tcl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Tcl_test.cpp -------------------------------------------------------------------------------- /test/ir_Technibel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Technibel_test.cpp -------------------------------------------------------------------------------- /test/ir_Teco_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Teco_test.cpp -------------------------------------------------------------------------------- /test/ir_Teknopoint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Teknopoint_test.cpp -------------------------------------------------------------------------------- /test/ir_Toshiba_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Toshiba_test.cpp -------------------------------------------------------------------------------- /test/ir_Toto_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Toto_test.cpp -------------------------------------------------------------------------------- /test/ir_Transcold_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Transcold_test.cpp -------------------------------------------------------------------------------- /test/ir_Trotec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Trotec_test.cpp -------------------------------------------------------------------------------- /test/ir_Truma_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Truma_test.cpp -------------------------------------------------------------------------------- /test/ir_Vestel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Vestel_test.cpp -------------------------------------------------------------------------------- /test/ir_Voltas_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Voltas_test.cpp -------------------------------------------------------------------------------- /test/ir_Whirlpool_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Whirlpool_test.cpp -------------------------------------------------------------------------------- /test/ir_Whynter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Whynter_test.cpp -------------------------------------------------------------------------------- /test/ir_Wowwee_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Wowwee_test.cpp -------------------------------------------------------------------------------- /test/ir_Xmp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Xmp_test.cpp -------------------------------------------------------------------------------- /test/ir_York_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_York_test.cpp -------------------------------------------------------------------------------- /test/ir_Zepeal_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ir_Zepeal_test.cpp -------------------------------------------------------------------------------- /test/ut_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/test/ut_utils.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/RawToGlobalCache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/RawToGlobalCache.sh -------------------------------------------------------------------------------- /tools/auto_analyse_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/auto_analyse_raw_data.py -------------------------------------------------------------------------------- /tools/auto_analyse_raw_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/auto_analyse_raw_data_test.py -------------------------------------------------------------------------------- /tools/code_to_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/code_to_raw.cpp -------------------------------------------------------------------------------- /tools/code_to_raw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/code_to_raw_test.sh -------------------------------------------------------------------------------- /tools/extract_lib_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/extract_lib_version.sh -------------------------------------------------------------------------------- /tools/gc_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/gc_decode.cpp -------------------------------------------------------------------------------- /tools/generate_irtext_h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/generate_irtext_h.sh -------------------------------------------------------------------------------- /tools/mkkeywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/mkkeywords -------------------------------------------------------------------------------- /tools/mode2_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/mode2_decode.cpp -------------------------------------------------------------------------------- /tools/raw_to_pronto_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/raw_to_pronto_code.py -------------------------------------------------------------------------------- /tools/raw_to_pronto_code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/raw_to_pronto_code_test.py -------------------------------------------------------------------------------- /tools/scrape_supported_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crankyoldgit/IRremoteESP8266/HEAD/tools/scrape_supported_devices.py --------------------------------------------------------------------------------