From d82d522791b805ebaebe926c45ca18a1ba35a3cc Mon Sep 17 00:00:00 2001 From: Simon John Date: Sat, 16 Jan 2016 22:03:19 +0000 Subject: [PATCH] ESP8266 fix --- src/LedControl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/LedControl.h b/src/LedControl.h index cdfaa1f5..33b8cff8 100644 --- a/src/LedControl.h +++ b/src/LedControl.h @@ -27,7 +27,11 @@ #ifndef LedControl_h #define LedControl_h +#if defined(__AVR__) #include +#elif defined(ESP8266) +#include +#endif #if (ARDUINO >= 100) #include