From 7452c60222dd4a393c0717c3c8388fa8d7017236 Mon Sep 17 00:00:00 2001 From: PaulStoffregen Date: Mon, 25 Jul 2016 21:37:21 -0700 Subject: [PATCH] Add less intense color option in BasicTest example --- examples/BasicTest/BasicTest.ino | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples/BasicTest/BasicTest.ino b/examples/BasicTest/BasicTest.ino index c6476f2..25c7981 100644 --- a/examples/BasicTest/BasicTest.ino +++ b/examples/BasicTest/BasicTest.ino @@ -62,6 +62,17 @@ void setup() { #define ORANGE 0xE05800 #define WHITE 0xFFFFFF +// Less intense... +/* +#define RED 0x160000 +#define GREEN 0x001600 +#define BLUE 0x000016 +#define YELLOW 0x101400 +#define PINK 0x120009 +#define ORANGE 0x100400 +#define WHITE 0x101010 +*/ + void loop() { int microsec = 2000000 / leds.numPixels(); // change them all in 2 seconds