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:
authoralex-Arc <alex@arc-light.dk>2016-07-22 21:44:34 +0300
committeralex-Arc <alex@arc-light.dk>2016-07-22 21:44:34 +0300
commitd83db23da3c03ef736c90e9db1edd8267a192384 (patch)
treef98f94d1c2b3ad30d19966391d709f2aa3ae91e4
parenta3cae1f0eeae3cc01702e423309866489e8939ba (diff)
parenta88d1a99c84e53188bacb92de4c01c2cf450dbe3 (diff)
Merge branch 'WS2813' of https://github.com/alex-Arc/FastLED into WS2813
# Conflicts: # FastLED.h
-rw-r--r--FastLED.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/FastLED.h b/FastLED.h
index 7d017fd3..e8bcad37 100644
--- a/FastLED.h
+++ b/FastLED.h
@@ -350,7 +350,11 @@ public:
{
switch(CHIPSET) {
case OCTOWS2811: { static COctoWS2811Controller<RGB_ORDER> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }
+<<<<<<< HEAD
case OCTOWS2811_400: { static COctoWS2811Controller<RGB_ORDER,WS2811_400kHz> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }
+=======
+ case OCTOWS2811_400: { static COctoWS2811Controller<RGB_ORDER,true> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }
+>>>>>>> a88d1a99c84e53188bacb92de4c01c2cf450dbe3
case OCTOWS2813: { static COctoWS2811Controller<RGB_ORDER,WS2813_800kHz> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }
}
}