Skeleton code. LCD, Serial, Feedback, MOSFETS

Dependencies:   mbed mbed-rtos ShiftReg2 TextLCD

SCHEDULES/Schedules.hpp

Committer:
thomasmorris
Date:
2019-05-07
Revision:
4:020f93d35f6e

File content as of revision 4:020f93d35f6e:

#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_