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-11-18 11:03:33 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-11-18 11:03:33 +0300
commitfb5e83ec385f2d3b8180551b9011dea4068cbfb8 (patch)
treeddbc4d880a3e9201e2e9a4adf7a6b222f8796b99 /examples
parent7cd056fd36433faaf23b93a114619e04fa1a7d0a (diff)
Apparently #error in .ino files will always fire. Not sure what's going on here, since #error's don't fire in other sections of code. Switching to a #warning for now.
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 3f686943..0f57cad7 100644
--- a/examples/DemoReel100/DemoReel100.ino
+++ b/examples/DemoReel100/DemoReel100.ino
@@ -12,7 +12,7 @@ FASTLED_USING_NAMESPACE
// -Mark Kriegsman, December 2014
#if FASTLED_VERSION < 3001000
-#error "Requires FastLED 3.1 or later; check github for latest code."
+#warning "Requires FastLED 3.1 or later; check github for latest code."
#endif
#define DATA_PIN 3