TcMenu / tcMenu

Menu library for Arduino, mbed and ESP with designer UI and remote control capabilities.
https://www.thecoderscorner.com/products/arduino-libraries/tc-menu/
Apache License 2.0
281 stars 24 forks source link

Dependence on availableForWrite being available in core on Stream class. #16

Closed davetcc closed 5 years ago

davetcc commented 6 years ago

Not really a bug, but something to look at in that there is a dependence on a very recent commit to the Print.h file - availableForWrite.

See how things pan out to see if its supported on at least AVR, SAMD and ESP8266. Workaround: go to board manager in your IDE (Arduino IDE at the top of the board options) and update your boards.

davetcc commented 6 years ago

Worst case just change available for write to return connected() if you cannot update your board to a recent enough version.

davetcc commented 5 years ago

Now much easier to work around. The new plugin system makes different versions per board type possible.