Two simple classes for using the RGB led

Dependencies:   mbed

Dependents:   4180-lab3-RTOS 4180-FinalProject

Revision:
1:0008e30a2bda
Parent:
0:7a3ee33c0a53
diff -r 7a3ee33c0a53 -r 0008e30a2bda SimpleRGB.cpp
--- a/SimpleRGB.cpp	Mon Oct 10 00:32:31 2016 +0000
+++ b/SimpleRGB.cpp	Mon Oct 10 01:56:26 2016 +0000
@@ -27,10 +27,4 @@
     _rpin = color.red;
     _gpin = color.green;
     _bpin = color.blue;
-}
-
-// alow assingment of LightColor object to the RGBLed object
-RGBLed operator = (LightColor color) {
-    write(color);
-    return *this;
 }
\ No newline at end of file