Skeleton code. LCD, Serial, Feedback, MOSFETS

Dependencies:   mbed mbed-rtos ShiftReg2 TextLCD

Revision:
4:020f93d35f6e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Serial/Serial_PC.hpp	Tue May 07 21:55:57 2019 +0000
@@ -0,0 +1,28 @@
+#ifndef _SERIAL_PC_HPP_
+#define _SERIAL_PC_HPP_
+
+#include "mbed.h"
+#include "rtos.h" 
+#include "Interface.hpp"
+
+extern int Logging;
+class SERIAL_PC
+{
+    public://Public member functions and variables
+    
+    SERIAL_PC();
+    ~SERIAL_PC();
+    void Init();
+    int Post();
+    void Main();
+    //Public Functions
+    
+    
+    private://Private member functions and variables
+    char _buffer[32];//Character buffer for the serial data to be stored within
+  
+
+};
+
+
+#endif //_SERIAL_PC_HPP_
\ No newline at end of file