Skeleton code. LCD, Serial, Feedback, MOSFETS

Dependencies:   mbed mbed-rtos ShiftReg2 TextLCD

Serial/Serial_PC.hpp

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

File content as of revision 4:020f93d35f6e:

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