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>2015-12-12 13:32:55 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-12-12 13:32:55 +0300
commitfcb0891574ffacf6f98ef9e4cc49328577870495 (patch)
tree9e8e7a1948e2793620db8569754ac2f278c685da /examples
parent6fa6e2da2c048b45a8b2891383036091fee09417 (diff)
Fix version check code for Arduino 1.6.6 and later
Diffstat (limited to 'examples')
-rw-r--r--examples/DemoReel100/DemoReel100.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/DemoReel100/DemoReel100.ino b/examples/DemoReel100/DemoReel100.ino
index 0f57cad7..ffa3a9fd 100644
--- a/examples/DemoReel100/DemoReel100.ino
+++ b/examples/DemoReel100/DemoReel100.ino
@@ -11,7 +11,7 @@ FASTLED_USING_NAMESPACE
//
// -Mark Kriegsman, December 2014
-#if FASTLED_VERSION < 3001000
+#if defined(FASTLED_VERSION) && (FASTLED_VERSION < 3001000)
#warning "Requires FastLED 3.1 or later; check github for latest code."
#endif