TickerScheduler
TickerScheduler copied to clipboard
Linux platform not compile you code
Please fix code in TickerScheduler.h : 4 line.
#include <Arduino.h>
Change to:
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#endif
Thanks.