Thomas Morris / Mbed OS PROJ324_Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers COLOURS.hpp Source File

COLOURS.hpp

00001 /*
00002 This is the functions for identifying the colours is
00003 */
00004 
00005 #ifndef COLOURS_HPP//Header Guards Prevents Multiple includes
00006 #define COLOURS_HPP
00007 //Libraries and header includes
00008 #include "mbed.h"
00009 #include "ALGORITHM.hpp"
00010 
00011 
00012 enum Colours;
00013 static int colour_data = 0;
00014 Colours convert (int Colour);
00015 char Value_convert (Colours value);
00016 void Store_Cubelet_data();
00017 
00018 #endif