FINAL PROJECT isn't it

Fork of ELEC351 by Plymouth ELEC351 Group T

Revision:
51:47f5db68500b
Parent:
5:2594b953f111
Child:
52:99915f5240b2
diff -r 3d61ca637399 -r 47f5db68500b LED.hpp
--- a/LED.hpp	Tue Jan 09 12:19:12 2018 +0000
+++ b/LED.hpp	Tue Jan 09 15:15:08 2018 +0000
@@ -1,5 +1,11 @@
-#ifndef _LED_HPP_ //Known as header guards
-#define _LED_HPP_
+/*
+This is our LED Class it enables us to write to LED
+quickly and easily and it encapsulates a few functions
+to prompt ease of use.
+*/
+
+#ifndef LED_HPP//Header Guards Prevents Multiple includes
+#define LED_HPP
 
 class LED //This creates a class called Led
 {