Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Revision:
4:1ef122d47bf3
Child:
6:347c1f441b94
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Feedback/Feedback.hpp	Thu Apr 11 11:37:39 2019 +0000
@@ -0,0 +1,34 @@
+#ifndef _FEEDBACK_HPP_
+#define _FEEDBACK_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 FEEDBACK
+{
+    public://Public member functions and variables
+    FEEDBACK();
+    ~FEEDBACK();
+    void Init();
+    int Post();
+    void FEEDBACK_test();
+    //Public Functions
+    
+    //Public Variabls
+    
+    private://Private member functions and variables
+    
+    //Private Functions
+    
+    //Private Variables
+    
+    
+};
+#endif //_FEEDBACK_
\ No newline at end of file