initial upload

This commit is contained in:
Harald Pichler 2016-12-06 21:32:33 +01:00
parent 938aa0db71
commit 353cfe723c
22 changed files with 1582 additions and 0 deletions

View file

@ -0,0 +1,34 @@
/*
* Example of using the ChainableRGB library for controlling a Grove RGB.
* This code fades in an out colors in a strip of leds.
*/
#include <ChainableLED.h>
#define NUM_LEDS 5
ChainableLED leds(7, 8, NUM_LEDS);
void setup()
{
leds.init();
}
byte power = 0;
void loop()
{
for (byte i=0; i<NUM_LEDS; i++)
{
if (i%2 == 0)
leds.setColorRGB(i, power, 0, 0);
else
leds.setColorRGB(i, 0, 255-power, 0);
}
power+= 10;
delay(10);
}