PROJ515 / Mbed 2 deprecated PROJ514-MASTER

Dependencies:   mbed mbed-rtos ShiftReg2 TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Schedules.hpp Source File

Schedules.hpp

00001 #ifndef _SCHEDULES_HPP_
00002 #define _SCHEDULES_HPP_
00003 
00004 #include "mbed.h"
00005 #include "rtos.h"
00006 #include "TextLCD.h"
00007 
00008 //Libraries and header file includes
00009 
00010 
00011 extern Serial PC;    //TX, RX
00012 extern TextLCD Lcd; // rs, e, d4-d7
00013 
00014 class SCHEDULES
00015 {
00016     public://Public member functions and variables
00017     SCHEDULES();
00018     ~SCHEDULES();
00019     void Init();
00020     int Post();
00021     void Schedules_output();
00022     //Public Functions
00023     
00024     //Public Variabls
00025     
00026     private://Private member functions and variables
00027     
00028     //Private Functions
00029     
00030     //Private Variables
00031     
00032     
00033 };
00034 #endif //_INTERFACE_HPP_