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-02-09 11:07:19 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-02-09 11:07:19 +0300
commit033f47f3c95f4143d7f1d97144b0100dafa3d1df (patch)
tree3d0fa216d45342bfc7545c8afc7773d0e65b7d50 /color.h
parentf149084f46492e0d012be82b96bf7b2d50e24a5a (diff)
SparkCore needs FastLED to be in a namespace.
Diffstat (limited to 'color.h')
-rw-r--r--color.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/color.h b/color.h
index 17d1b20a..e06f45eb 100644
--- a/color.h
+++ b/color.h
@@ -1,6 +1,8 @@
#ifndef __INC_COLOR_H
#define __INC_COLOR_H
+FASTLED_NAMESPACE_BEGIN
+
// definitions for color correction and light temperatures
typedef enum {
@@ -51,4 +53,7 @@ typedef enum {
// Uncorrected temperature 0xFFFFFF
UncorrectedTemperature=0xFFFFFF
} ColorTemperature;
-#endif \ No newline at end of file
+
+FASTLED_NAMESPACE_END
+
+#endif