Added the pin outs
Dependencies: mbed mbed-rtos ShiftReg TextLCD
Schedules/Schedules.hpp
- Committer:
- thomasmorris
- Date:
- 2019-05-06
- Revision:
- 7:d0159f675b30
- Parent:
- 4:1ef122d47bf3
File content as of revision 7:d0159f675b30:
#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_