A classy affair

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Revision:
3:3700f0c29710
Child:
4:1ef122d47bf3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Setup.hpp	Wed Apr 10 11:33:32 2019 +0000
@@ -0,0 +1,25 @@
+#ifndef _SETUP_HPP_
+#define _SETUP_HPP_
+//Libraries
+#include "mbed.h"
+#include "rtos.h"  //Real Time Operating System. https://os.mbed.com/handbook/RTOS
+#include "ShiftReg.h"
+
+
+//Header Files
+#include "Post.hpp"
+#include "Interface.hpp"
+#include "Power.hpp"
+#include "Post.hpp"
+//Digital Outputs
+extern DigitalOut myled;    //Onboard LED
+
+
+//Class instances
+extern POWER POWER_1;
+extern INTERFACE INTERFACE_1;
+//ShiftReg SR1(PA_12, PA_11, PA_10);    //data, store, clock
+
+static Thread Serial_Thread;
+
+#endif //_SETUP_HPP_