Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Interface/Interface.hpp

Committer:
thomasmorris
Date:
2019-04-11
Revision:
6:347c1f441b94
Parent:
4:1ef122d47bf3
Child:
7:d0159f675b30

File content as of revision 6:347c1f441b94:

#ifndef _INTERFACE_HPP_
#define _INTERFACE_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
//extern DigitalOut On_board_led;//Onboard LED
class INTERFACE
{
    public://Public member functions and variables
    INTERFACE();
    ~INTERFACE();
    void Init();
    int Post();
    void Serial();
    void LCD();
    void On_board_LED_Flash();
    //Public Functions
    
    //Public Variabls
    
    private://Private member functions and variables
    
    //Private Functions
    
    //Private Variables
    //DigitalOut On_board_led;//Onboard LED
};
#endif //_INTERFACE_HPP_