Toshik / TickerScheduler

Simple scheduler for ESP8266 Arduino based on Ticker
127 stars 42 forks source link

Linux platform not compile you code #8

Open renat2985 opened 7 years ago

renat2985 commented 7 years ago

Please fix code in TickerScheduler.h : 4 line.

#include <Arduino.h> Change to:

#if defined(ARDUINO) && ARDUINO >= 100
    #include "Arduino.h"
#endif

Thanks.