ece 4180 lab 3

Dependencies:   mbed wave_player mbed-rtos 4DGL-uLCD-SE SDFileSystem X_NUCLEO_53L0A1 HC_SR04_Ultrasonic_Library

Revision:
2:4845e2dae429
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Color.h	Wed Feb 19 18:48:09 2020 +0000
@@ -0,0 +1,14 @@
+class Color {
+    public:
+        Color(float r, float g, float b);
+    public:
+        float red;
+        float green;
+        float blue;
+};
+
+Color::Color (float r, float g, float b) {
+    red = r;
+    green = g;
+    blue = b;
+}
\ No newline at end of file