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-02-11 01:39:42 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-02-11 01:39:42 +0400
commita10b38d220b6c28ba8abaed6aff6ed9bc03e6f6b (patch)
tree78235f1c3cacd857ca60e8cb6fb9c07ef1aee2a0 /examples/FirstLight
parent46661e13e10f707f9ca19d57b627b89d7d09fec0 (diff)
Preliminary test support for the GW6205 dropping 4 0 bits after the 8 bits of rgb data. Note: this is just writing out 8bit data to a 12bit chipset. Next step will be filling in the low 4 bits from scaling results (if applicable), then finally real CRGB16 support
Diffstat (limited to 'examples/FirstLight')
-rw-r--r--examples/FirstLight/FirstLight.ino2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/FirstLight/FirstLight.ino b/examples/FirstLight/FirstLight.ino
index 1572dad6..ebd58f13 100644
--- a/examples/FirstLight/FirstLight.ino
+++ b/examples/FirstLight/FirstLight.ino
@@ -37,6 +37,8 @@ void setup() {
// FastLED.addLeds<WS2812B, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<NEOPIXEL, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2811_400, DATA_PIN, RGB>(leds, NUM_LEDS);
+ // FastLED.addLeds<GW6205, DATA_PIN, RGB>(leds, NUM_LEDS);
+ // FastLED.addLeds<GW6205_400, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<UCS1903, DATA_PIN, RGB>(leds, NUM_LEDS);
FastLED.addLeds<UCS1903B, DATA_PIN, RGB>(leds, NUM_LEDS);