Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Revision:
52:99915f5240b2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LED_LOGGING.hpp	Tue Jan 09 22:27:49 2018 +0000
@@ -0,0 +1,15 @@
+/*
+This is where we define and declare LED logging states
+*/
+#ifndef LED_LOGGING_HPP//Header Guards Prevents Multiple includes
+#define LED_LOGGING_HPP
+//Libraries and header includes
+#include "mbed.h"
+#include "rtos.h"
+#include "THREADS.hpp"
+#include "LED.hpp"
+
+static LED Yellow_led(PB_10);           //Yellow LED object
+extern volatile int Log_Value;                   //Value of the Log
+extern void Log_Leds();                 //Log Leds function
+#endif
\ No newline at end of file