Im trying to use the Arduino IDE to work with an ESP32 board and implement an IR transmit sketch.
So I found that the IRRemote
library included with the IDE won't work with the ESP32 but it has been forked and patched here https://github.com/SensorsIot/Definitive-Guide-to-IR/tree/master/ESP32-IRremote
The problems I have are I don't know the best way to download this library and put into the Arduino IDE's include path. Also once I have done that, how can know i'm including the correct header files (IRRemote.h
/IRSend.h
), as both the unpatched Arduino version and this new ESP32 version are now installed?
Thanks NFV