Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

LED_LOGGING.hpp

Committer:
thomasmorris
Date:
2018-01-09
Revision:
52:99915f5240b2

File content as of revision 52:99915f5240b2:

/*
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