├── .gitattributes ├── ESP32-IRremote ├── .gitignore ├── .travis.yml ├── Contributing.md ├── Contributors.md ├── IRremote.cpp ├── IRremote.h ├── IRremoteInt.h ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── README.md ├── boarddefs.h ├── changelog.md ├── examples │ ├── AiwaRCT501SendDemo │ │ └── AiwaRCT501SendDemo.ino │ ├── IRrecord │ │ └── IRrecord.ino │ ├── IRrecvDemo │ │ └── IRrecvDemo.ino │ ├── IRrecvDump │ │ └── IRrecvDump.ino │ ├── IRrecvDumpV2 │ │ └── IRrecvDumpV2.ino │ ├── IRrelay │ │ └── IRrelay.ino │ ├── IRremoteInfo │ │ └── IRremoteInfo.ino │ ├── IRsendDemo │ │ └── IRsendDemo.ino │ ├── IRsendRawDemo │ │ └── IRsendRawDemo.ino │ ├── IRtest │ │ └── IRtest.ino │ ├── IRtest2 │ │ └── IRtest2.ino │ ├── JVCPanasonicSendDemo │ │ └── JVCPanasonicSendDemo.ino │ ├── LGACSendDemo │ │ ├── LGACSendDemo.ino │ │ └── LGACSendDemo.md │ ├── LegoPowerFunctionsSendDemo │ │ └── LegoPowerFunctionsSendDemo.ino │ └── LegoPowerFunctionsTests │ │ └── LegoPowerFunctionsTests.ino ├── irPronto.cpp ├── irRecv.cpp ├── irSend.cpp ├── ir_Aiwa.cpp ├── ir_Denon.cpp ├── ir_Dish.cpp ├── ir_JVC.cpp ├── ir_LG.cpp ├── ir_Lego_PF.cpp ├── ir_Lego_PF_BitStreamEncoder.h ├── ir_Mitsubishi.cpp ├── ir_NEC.cpp ├── ir_Panasonic.cpp ├── ir_RC5_RC6.cpp ├── ir_Samsung.cpp ├── ir_Sanyo.cpp ├── ir_Sharp.cpp ├── ir_Sony.cpp ├── ir_Template.cpp ├── ir_Whynter.cpp ├── keywords.txt ├── library.json └── library.properties ├── IRMQTT_ESP32 └── IRMQTT_ESP32.ino ├── NodeRed Flow.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/.gitattributes -------------------------------------------------------------------------------- /ESP32-IRremote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/.gitignore -------------------------------------------------------------------------------- /ESP32-IRremote/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/.travis.yml -------------------------------------------------------------------------------- /ESP32-IRremote/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/Contributing.md -------------------------------------------------------------------------------- /ESP32-IRremote/Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/Contributors.md -------------------------------------------------------------------------------- /ESP32-IRremote/IRremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/IRremote.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/IRremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/IRremote.h -------------------------------------------------------------------------------- /ESP32-IRremote/IRremoteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/IRremoteInt.h -------------------------------------------------------------------------------- /ESP32-IRremote/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /ESP32-IRremote/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/LICENSE.txt -------------------------------------------------------------------------------- /ESP32-IRremote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/README.md -------------------------------------------------------------------------------- /ESP32-IRremote/boarddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/boarddefs.h -------------------------------------------------------------------------------- /ESP32-IRremote/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/changelog.md -------------------------------------------------------------------------------- /ESP32-IRremote/examples/AiwaRCT501SendDemo/AiwaRCT501SendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/AiwaRCT501SendDemo/AiwaRCT501SendDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRrecord/IRrecord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRrecord/IRrecord.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRrecvDemo/IRrecvDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRrecvDemo/IRrecvDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRrecvDump/IRrecvDump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRrecvDump/IRrecvDump.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRrecvDumpV2/IRrecvDumpV2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRrecvDumpV2/IRrecvDumpV2.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRrelay/IRrelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRrelay/IRrelay.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRremoteInfo/IRremoteInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRremoteInfo/IRremoteInfo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRsendDemo/IRsendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRsendDemo/IRsendDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRsendRawDemo/IRsendRawDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRsendRawDemo/IRsendRawDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRtest/IRtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRtest/IRtest.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/IRtest2/IRtest2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/IRtest2/IRtest2.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.md -------------------------------------------------------------------------------- /ESP32-IRremote/examples/LegoPowerFunctionsSendDemo/LegoPowerFunctionsSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/LegoPowerFunctionsSendDemo/LegoPowerFunctionsSendDemo.ino -------------------------------------------------------------------------------- /ESP32-IRremote/examples/LegoPowerFunctionsTests/LegoPowerFunctionsTests.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/examples/LegoPowerFunctionsTests/LegoPowerFunctionsTests.ino -------------------------------------------------------------------------------- /ESP32-IRremote/irPronto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/irPronto.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/irRecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/irRecv.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/irSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/irSend.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Aiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Aiwa.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Denon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Denon.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Dish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Dish.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_JVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_JVC.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_LG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_LG.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Lego_PF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Lego_PF.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Lego_PF_BitStreamEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Lego_PF_BitStreamEncoder.h -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Mitsubishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Mitsubishi.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_NEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_NEC.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Panasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Panasonic.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_RC5_RC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_RC5_RC6.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Samsung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Samsung.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Sanyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Sanyo.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Sharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Sharp.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Sony.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Template.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/ir_Whynter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/ir_Whynter.cpp -------------------------------------------------------------------------------- /ESP32-IRremote/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/keywords.txt -------------------------------------------------------------------------------- /ESP32-IRremote/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/library.json -------------------------------------------------------------------------------- /ESP32-IRremote/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/ESP32-IRremote/library.properties -------------------------------------------------------------------------------- /IRMQTT_ESP32/IRMQTT_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/IRMQTT_ESP32/IRMQTT_ESP32.ino -------------------------------------------------------------------------------- /NodeRed Flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/NodeRed Flow.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Definitive-Guide-to-IR/HEAD/README.md --------------------------------------------------------------------------------