Fix model, Pixie only uses rgb

This commit is contained in:
mmcwilliams 2016-04-11 15:17:20 -04:00
parent 02b32dd829
commit dab987abc0
1 changed files with 14 additions and 20 deletions

View File

@ -7,21 +7,18 @@
SoftwareSerial pixieSerial(-1, PIXIEPIN); SoftwareSerial pixieSerial(-1, PIXIEPIN);
Adafruit_Pixie light = Adafruit_Pixie(NUMPIXELS, &pixieSerial); Adafruit_Pixie light = Adafruit_Pixie(NUMPIXELS, &pixieSerial);
String color = "000,000,000,000"; String color = "000,000,000";
volatile int commaR = 0; volatile int commaR = 0;
volatile int commaG = 0; volatile int commaG = 0;
volatile int commaB = 0;
String strR = "000"; String strR = "000";
String strG = "000"; String strG = "000";
String strB = "000"; String strB = "000";
String strA = "000"; // To the end of the string
volatile int r = 0; volatile int r = 0;
volatile int g = 0; volatile int g = 0;
volatile int b = 0; volatile int b = 0;
volatile int a = 0;
volatile char cmd_char = 'z'; volatile char cmd_char = 'z';
@ -62,17 +59,14 @@ void colorString () {
commaR = color.indexOf(','); //comma trailing R commaR = color.indexOf(','); //comma trailing R
commaG = color.indexOf(',', commaR + 1); commaG = color.indexOf(',', commaR + 1);
commaB = color.indexOf(',', commaG + 1);
strR = color.substring(0, commaR); strR = color.substring(0, commaR);
strG = color.substring(commaR + 1, commaG); strG = color.substring(commaR + 1, commaG);
strB = color.substring(commaG + 1, commaB); strB = color.substring(commaG + 1, commaB);
strA = color.substring(commaB + 1); // To the end of the string
r = strR.toInt(); r = strR.toInt();
g = strG.toInt(); g = strG.toInt();
b = strB.toInt(); b = strB.toInt();
a = strA.toInt();
light.setPixelColor(r, g, b, a); light.setPixelColor(0, r, g, b);
} }