destroyedlolo / OWBus

Maxim's One Wire bus handling for arduino
Other
4 stars 3 forks source link

Update ESP8266 FQBN in .travis.yml #4

Closed per1234 closed 5 years ago

per1234 commented 5 years ago

Some of the menu IDs for the ESP8266 boards were recently changed (https://github.com/esp8266/Arduino/issues/5572), which caused compilation in the Travis CI build to fail:

Error: CpuFrequency: Invalid option for board "d1_mini"

Note the compilations using Arduino IDE 1.6.5-r5 still fail:

libraries/OWBus/src/OWBus.h:17:21: fatal error: OneWire.h: No such file or directory
 #include <OneWire.h>

but this is due to a different problem. Older IDE versions required #include directives in the sketch for all library dependencies. The solution to that error is to add the following line to the example sketches:

#include <OneWire.h>

After fixing that, I still get other errors when compiling with Arduino IDE 1.6.5-r5. I haven't investigated these other errors.

By the way, I'm pleased to see you are using my CI script!