Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2016-01-26 11:22:02 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2016-01-26 11:22:02 +0300
commit8412262567e162eebcb9baa07c6ab1312185a92f (patch)
tree2ca0ff5a1ce95df7d235cb576b440f51ff1eb4d5
parenta312070ed08e95ecb9ce956f53624107b76dbbfa (diff)
Fix #249 - max pin typo
-rw-r--r--platforms/esp/8266/fastpin_esp8266.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/esp/8266/fastpin_esp8266.h b/platforms/esp/8266/fastpin_esp8266.h
index 7c1edce2..3d9bba1d 100644
--- a/platforms/esp/8266/fastpin_esp8266.h
+++ b/platforms/esp/8266/fastpin_esp8266.h
@@ -33,7 +33,7 @@ public:
#define _DEFPIN_ESP8266(PIN) template<> class FastPin<PIN> : public _ESPPIN<PIN, (1<<(PIN & 0xFF))> {};
-#define MAX_PIN 116
+#define MAX_PIN 16
_DEFPIN_ESP8266(0); _DEFPIN_ESP8266(1); _DEFPIN_ESP8266(2); _DEFPIN_ESP8266(3);
_DEFPIN_ESP8266(4); _DEFPIN_ESP8266(5); _DEFPIN_ESP8266(6); _DEFPIN_ESP8266(7);
_DEFPIN_ESP8266(8); _DEFPIN_ESP8266(9); _DEFPIN_ESP8266(10); _DEFPIN_ESP8266(11);