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 LED_LOGGING.hpp Source File

LED_LOGGING.hpp

00001 /*
00002 This is where we define and declare LED logging states
00003 */
00004 #ifndef LED_LOGGING_HPP//Header Guards Prevents Multiple includes
00005 #define LED_LOGGING_HPP
00006 //Libraries and header includes
00007 #include "mbed.h"
00008 #include "rtos.h"
00009 #include "THREADS.hpp"
00010 #include "LED.hpp"
00011 
00012 static LED Yellow_led(PB_10);           //Yellow LED object
00013 extern volatile int Log_Value;                   //Value of the Log
00014 extern void Log_Leds();                 //Log Leds function
00015 #endif