Multiple libraries were found for "IRremote.h"
I presume the issue is not the board, since nothing has been uploaded.
The error occurs at the very beginning.
Go under preferences (File => Preferences) and check the "Show Verbose Output During" "Compilation".
This will give you some more information about the warning. It is not an error, since you can have multiple libraries with the same name. The file irremote.h can be inside different folders, but you will get more info only with the verbose mode.
Once you compile, you will get some info like:
- multiple libraries found
- library 1 on path XXXX
- library 2 on path YYYY
- compiler will get library on path XXXX (for example).
I don't think the library on Java/libraries/RobotIRremote is used. There are 2 folders where the Arduino IDE will check for libraries:
- installation folder (libraries that are installed with the Arduino IDE)
- user folder (Users/YOURNAME/Documents/Arduino/libraries)
And then there is also a folder for your board, under windows, this is in the %APPDATA%/../local/Arduino15/packages/esp8266/hardware/esp8266/2.5.2/libraries for example.
If the IDE is taking the right library (probably it does), you can ignore this warning message.
Edit: if you are using IR remote for the ESP, check this library: IRRemoteESP8266
Most likely a conflict with the Robot IR Control library that comes with the Arduino IDE. Arduino doesn't know which one to use.
Delete it if you don't need it or change either one of the libraries to remove any naming conflicts.
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.