2016-04-11 04:11:38 +00:00
|
|
|
#include "SoftwareSerial.h"
|
|
|
|
#include "Adafruit_Pixie.h"
|
|
|
|
|
|
|
|
#define NUMPIXELS 1 // Number of Pixies in the strip
|
|
|
|
#define PIXIEPIN 6 // Pin number for SoftwareSerial output
|
|
|
|
|
|
|
|
SoftwareSerial pixieSerial(-1, PIXIEPIN);
|
|
|
|
Adafruit_Pixie light = Adafruit_Pixie(NUMPIXELS, &pixieSerial);
|
|
|
|
|
2016-04-11 19:17:20 +00:00
|
|
|
String color = "000,000,000";
|
2016-04-11 04:11:38 +00:00
|
|
|
|
|
|
|
volatile int commaR = 0;
|
|
|
|
volatile int commaG = 0;
|
|
|
|
|
|
|
|
String strR = "000";
|
|
|
|
String strG = "000";
|
|
|
|
String strB = "000";
|
|
|
|
|
|
|
|
volatile int r = 0;
|
|
|
|
volatile int g = 0;
|
|
|
|
volatile int b = 0;
|
|
|
|
|
|
|
|
volatile char cmd_char = 'z';
|
2016-04-12 03:05:05 +00:00
|
|
|
const int serialDelay = 5;
|
2016-04-11 04:11:38 +00:00
|
|
|
|
|
|
|
void setup () {
|
|
|
|
Serial.begin(57600);
|
|
|
|
Serial.flush();
|
2016-04-12 03:05:05 +00:00
|
|
|
Serial.setTimeout(serialDelay);
|
2016-04-11 04:11:38 +00:00
|
|
|
pixieSerial.begin(115200); // Pixie REQUIRES this baud rate
|
2016-04-11 17:08:14 +00:00
|
|
|
light.setPixelColor(0, 0, 0, 0);
|
2016-04-11 04:11:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop () {
|
|
|
|
if (Serial.available()) {
|
|
|
|
/* read the most recent byte */
|
|
|
|
cmd_char = (char)Serial.read();
|
|
|
|
}
|
|
|
|
if (cmd_char != 'z') {
|
|
|
|
cmd(cmd_char);
|
|
|
|
cmd_char = 'z';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2016-04-12 04:07:01 +00:00
|
|
|
//l - light - followed by String
|
2016-04-11 04:11:38 +00:00
|
|
|
//
|
|
|
|
void cmd (char val) {
|
2016-04-12 04:07:01 +00:00
|
|
|
if (val == 'i') {
|
|
|
|
Serial.println("i");//confirm connection
|
|
|
|
} else if (val == 'l') {
|
2016-04-11 04:11:38 +00:00
|
|
|
colorString();
|
2016-04-12 04:07:01 +00:00
|
|
|
Serial.println("l");//End of action
|
2016-04-11 04:11:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void colorString () {
|
2016-04-11 19:17:20 +00:00
|
|
|
while (Serial.available() == 0) {
|
|
|
|
//Wait for color string
|
|
|
|
}
|
|
|
|
color = Serial.readString();
|
2016-04-11 17:08:14 +00:00
|
|
|
//Serial.println(color);
|
2016-04-11 04:11:38 +00:00
|
|
|
|
2016-04-11 19:17:20 +00:00
|
|
|
commaR = color.indexOf(','); //comma trailing R
|
|
|
|
commaG = color.indexOf(',', commaR + 1);
|
2016-04-11 04:11:38 +00:00
|
|
|
|
2016-04-11 19:17:20 +00:00
|
|
|
strR = color.substring(0, commaR);
|
|
|
|
strG = color.substring(commaR + 1, commaG);
|
2016-04-11 19:59:48 +00:00
|
|
|
strB = color.substring(commaG + 1);
|
2016-04-11 04:11:38 +00:00
|
|
|
|
2016-04-11 19:17:20 +00:00
|
|
|
r = strR.toInt();
|
|
|
|
g = strG.toInt();
|
|
|
|
b = strB.toInt();
|
2016-04-11 04:11:38 +00:00
|
|
|
|
2016-04-11 19:17:20 +00:00
|
|
|
light.setPixelColor(0, r, g, b);
|
2016-04-11 17:08:14 +00:00
|
|
|
}
|