Simple 8x8 LED Matrix controller which interfaces with a Processing GUI over serial to display sketches
Dependencies: Multi_WS2811 mbed
Fork of Multi_WS2811_test by
Revision 28:dbe551a3dd64, committed 2014-01-03
- Comitter:
- bikeNomad
- Date:
- Fri Jan 03 16:12:56 2014 +0000
- Parent:
- 27:88c2abdf5eb9
- Child:
- 29:a76075c853ee
- Commit message:
- removed unnecessary color constructors
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Jan 03 15:45:56 2014 +0000
+++ b/main.cpp Fri Jan 03 16:12:56 2014 +0000
@@ -53,7 +53,7 @@
uint8_t r, g, b;
float hue = ((float)i / (float)nLEDs) + hueShift;
HSBtoRGB(hue, sat, brite, &r, &g, &b);
- strip.setPixelColor(i, LedStrip::Color(r, g, b));
+ strip.setPixelColor(i, r, g, b);
}
strip.show();
}
@@ -62,7 +62,7 @@
{
unsigned nLEDs = strip.numPixels();
for (unsigned i = 0; i < nLEDs; i++) {
- strip.setPixelColor(i, LedStrip::Color(r, g, b));
+ strip.setPixelColor(i, r, g, b);
}
strip.show();
}
@@ -77,7 +77,6 @@
lightStrip1.begin();
lightStrip2.begin();
- float rainbowPeriod = 1 * 1.0e6; // usec
float sat = 1.0;
timeRunning.start();
