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/SCHEDULES/Schedules.hpp	Tue May 07 21:55:57 2019 +0000
@@ -0,0 +1,34 @@
+#ifndef _SCHEDULES_HPP_
+#define _SCHEDULES_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 SCHEDULES
+{
+    public://Public member functions and variables
+    SCHEDULES();
+    ~SCHEDULES();
+    void Init();
+    int Post();
+    void Schedules_output();
+    //Public Functions
+    
+    //Public Variabls
+    
+    private://Private member functions and variables
+    
+    //Private Functions
+    
+    //Private Variables
+    
+    
+};
+#endif //_INTERFACE_HPP_
\ No newline at end of file