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>2014-11-24 23:13:09 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2014-11-24 23:13:09 +0300
commit832c1bcdecb41b00a8897f364a244aad96a5dc2f (patch)
tree08aa38fde65a244bd3d7d5b2c517cac5afa56945 /examples/FirstLight
parentc2f9d3159ae858e6ca2af118cb3666f9a05d560f (diff)
Prefix config defines with FASTLED_ to make sure we don't conflict with anything else.
Diffstat (limited to 'examples/FirstLight')
-rw-r--r--examples/FirstLight/FirstLight.ino6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/FirstLight/FirstLight.ino b/examples/FirstLight/FirstLight.ino
index 928c7bbd..beec2986 100644
--- a/examples/FirstLight/FirstLight.ino
+++ b/examples/FirstLight/FirstLight.ino
@@ -1,8 +1,8 @@
// Use if you want to force the software SPI subsystem to be used for some reason (generally, you don't)
-// #define FORCE_SOFTWARE_SPI
+// #define FASTLED_FORCE_SOFTWARE_SPI
// Use if you want to force non-accelerated pin access (hint: you really don't, it breaks lots of things)
-// #define FORCE_SOFTWARE_SPI
-// #define FORCE_SOFTWARE_PINS
+// #define FASTLED_FORCE_SOFTWARE_SPI
+// #define FASTLED_FORCE_SOFTWARE_PINS
#include "FastLED.h"
///////////////////////////////////////////////////////////////////////////////////////////