Last active
April 20, 2017 03:00
-
-
Save gelicia/08ec3d34a9e3b7b987ea2abeab1e5681 to your computer and use it in GitHub Desktop.
tccc21 demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This #include statement was automatically added by the Particle IDE. | |
#include <neopixel.h> | |
Adafruit_NeoPixel strip = Adafruit_NeoPixel(1, D3, WS2812); | |
int red = 0; | |
int green = 0; | |
int blue = 0; | |
void setup() { | |
strip.begin(); | |
Particle.function("setColor", setColor); | |
} | |
void loop() { | |
displayColor(); | |
} | |
void displayColor(){ | |
strip.setPixelColor(0, red, green, blue); //set LED 0 to global colors | |
strip.show(); | |
} | |
int setColor(String command){ | |
int commaIndex1 = command.indexOf(','); | |
int commaIndex2 = command.indexOf(',', commaIndex1+1); | |
red = command.substring(0, commaIndex1).toInt(); | |
green = command.substring(commaIndex1+1, commaIndex2).toInt(); | |
blue = command.substring(commaIndex2+1).toInt(); | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment