Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Revision:
3:3700f0c29710
Child:
4:1ef122d47bf3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Interface/Interface.hpp	Wed Apr 10 11:33:32 2019 +0000
@@ -0,0 +1,34 @@
+#ifndef _INTERFACE_HPP_
+#define _INTERFACE_HPP_
+
+#include "mbed.h"
+#include "rtos.h"
+#include "TextLCD.h"
+
+//Libraries and header file includes
+
+
+extern Serial PC;    //TX, RX
+extern TextLCD LCD; // rs, e, d4-d7
+
+class INTERFACE
+{
+    public://Public member functions and variables
+    INTERFACE();
+    ~INTERFACE();
+    void Init();
+    int Post();
+    void Serial();
+    //Public Functions
+    
+    //Public Variabls
+    
+    private://Private member functions and variables
+    
+    //Private Functions
+    
+    //Private Variables
+    
+    
+};
+#endif //_INTERFACE_HPP_
\ No newline at end of file