3rd year group project. Electronic and Electrical Engineering. Heriot-Watt University. This is the code for the mbed for the Automatic Little Object Organiser (ALOO).

Dependencies:   MCP23017 TCS3472_I2C WattBob_TextLCD mbed

Revision:
26:bbcc25418ffa
Parent:
20:4e0f0944f28f
Child:
29:9c0339e3c593
--- a/Block.h	Mon Nov 30 15:06:38 2015 +0000
+++ b/Block.h	Mon Nov 30 21:29:51 2015 +0000
@@ -14,6 +14,7 @@
 		Colour(float components[4]);
 		Colour(const Colour& rhs);
 		virtual ~Colour();
+ 		void printDescription();
 
 		enum Components {Red = 0, Blue = 1, Green = 2, Alpha = 3};
 
@@ -66,6 +67,10 @@
 	Colour minColour;
 	Colour maxColour;
 	Colour averageColour;
+
+ 	void printDescription();
+ private:
+ 	
 };
 
 #endif /* _block_h_ */