├── README.md ├── data ├── DSEG7Modern-Italic.woff ├── apple-touch-icon-120x120.png ├── apple-touch-icon.png ├── favicon.ico ├── fontawesome-webfont.woff ├── index.html ├── manifest.json ├── script.js └── style.css ├── images ├── Build_an_ESP32_web_server_and_ir_remote.jpg ├── ESP32_web_server_ir_remote_schematic_diagram.png ├── system_diagram_of_esp32_web_server_and_IR_remote.png └── youtube_screen_capture.png ├── include └── README ├── lib ├── .gitignore ├── .travis.yml ├── 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 ├── README └── SHT21 │ ├── README.md │ ├── SHT21.cpp │ ├── SHT21.h │ ├── examples │ └── SHT21_Demo │ │ └── SHT21_Demo.ino │ └── keywords.txt ├── others ├── ESP32 IR Remote.pdf ├── README.md └── ir_decode.ino ├── platformio.ini ├── src └── main.cpp └── test └── README /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/README.md -------------------------------------------------------------------------------- /data/DSEG7Modern-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/DSEG7Modern-Italic.woff -------------------------------------------------------------------------------- /data/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /data/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/apple-touch-icon.png -------------------------------------------------------------------------------- /data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/favicon.ico -------------------------------------------------------------------------------- /data/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/fontawesome-webfont.woff -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/index.html -------------------------------------------------------------------------------- /data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/manifest.json -------------------------------------------------------------------------------- /data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/script.js -------------------------------------------------------------------------------- /data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/data/style.css -------------------------------------------------------------------------------- /images/Build_an_ESP32_web_server_and_ir_remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/images/Build_an_ESP32_web_server_and_ir_remote.jpg -------------------------------------------------------------------------------- /images/ESP32_web_server_ir_remote_schematic_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/images/ESP32_web_server_ir_remote_schematic_diagram.png -------------------------------------------------------------------------------- /images/system_diagram_of_esp32_web_server_and_IR_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/images/system_diagram_of_esp32_web_server_and_IR_remote.png -------------------------------------------------------------------------------- /images/youtube_screen_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/images/youtube_screen_capture.png -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/include/README -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/.travis.yml -------------------------------------------------------------------------------- /lib/ESP32-IRremote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/.gitignore -------------------------------------------------------------------------------- /lib/ESP32-IRremote/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/.travis.yml -------------------------------------------------------------------------------- /lib/ESP32-IRremote/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/Contributing.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/Contributors.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/IRremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/IRremote.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/IRremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/IRremote.h -------------------------------------------------------------------------------- /lib/ESP32-IRremote/IRremoteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/IRremoteInt.h -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/LICENSE.txt -------------------------------------------------------------------------------- /lib/ESP32-IRremote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/README.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/boarddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/boarddefs.h -------------------------------------------------------------------------------- /lib/ESP32-IRremote/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/changelog.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/AiwaRCT501SendDemo/AiwaRCT501SendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/AiwaRCT501SendDemo/AiwaRCT501SendDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRrecord/IRrecord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRrecord/IRrecord.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRrecvDemo/IRrecvDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRrecvDemo/IRrecvDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRrecvDump/IRrecvDump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRrecvDump/IRrecvDump.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRrecvDumpV2/IRrecvDumpV2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRrecvDumpV2/IRrecvDumpV2.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRrelay/IRrelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRrelay/IRrelay.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRremoteInfo/IRremoteInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRremoteInfo/IRremoteInfo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRsendDemo/IRsendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRsendDemo/IRsendDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRsendRawDemo/IRsendRawDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRsendRawDemo/IRsendRawDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRtest/IRtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRtest/IRtest.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/IRtest2/IRtest2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/IRtest2/IRtest2.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/LGACSendDemo/LGACSendDemo.md -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/LegoPowerFunctionsSendDemo/LegoPowerFunctionsSendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/LegoPowerFunctionsSendDemo/LegoPowerFunctionsSendDemo.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/examples/LegoPowerFunctionsTests/LegoPowerFunctionsTests.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/examples/LegoPowerFunctionsTests/LegoPowerFunctionsTests.ino -------------------------------------------------------------------------------- /lib/ESP32-IRremote/irPronto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/irPronto.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/irRecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/irRecv.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/irSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/irSend.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Aiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Aiwa.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Denon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Denon.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Dish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Dish.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_JVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_JVC.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_LG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_LG.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Lego_PF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Lego_PF.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Lego_PF_BitStreamEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Lego_PF_BitStreamEncoder.h -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Mitsubishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Mitsubishi.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_NEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_NEC.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Panasonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Panasonic.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_RC5_RC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_RC5_RC6.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Samsung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Samsung.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Sanyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Sanyo.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Sharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Sharp.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Sony.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Template.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/ir_Whynter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/ir_Whynter.cpp -------------------------------------------------------------------------------- /lib/ESP32-IRremote/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/keywords.txt -------------------------------------------------------------------------------- /lib/ESP32-IRremote/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/library.json -------------------------------------------------------------------------------- /lib/ESP32-IRremote/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/ESP32-IRremote/library.properties -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/README -------------------------------------------------------------------------------- /lib/SHT21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/SHT21/README.md -------------------------------------------------------------------------------- /lib/SHT21/SHT21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/SHT21/SHT21.cpp -------------------------------------------------------------------------------- /lib/SHT21/SHT21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/SHT21/SHT21.h -------------------------------------------------------------------------------- /lib/SHT21/examples/SHT21_Demo/SHT21_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/SHT21/examples/SHT21_Demo/SHT21_Demo.ino -------------------------------------------------------------------------------- /lib/SHT21/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/lib/SHT21/keywords.txt -------------------------------------------------------------------------------- /others/ESP32 IR Remote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/others/ESP32 IR Remote.pdf -------------------------------------------------------------------------------- /others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/others/README.md -------------------------------------------------------------------------------- /others/ir_decode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/others/ir_decode.ino -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tinkers/esp32_ir_remote/HEAD/test/README --------------------------------------------------------------------------------