Library for RGB LED

Dependents:   Robot_Love

Revision:
0:8f07ffe423ce
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/color.h	Thu Oct 29 16:17:50 2015 +0000
@@ -0,0 +1,15 @@
+
+#ifndef COLOR_H
+#define COLOR_H
+
+//class for 3 PWM color values for RGBLED
+class LEDColor
+{
+public:
+    LEDColor(int r, int g, int b);
+    float red;
+    float green;
+    float blue;
+};
+
+#endif