Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos ShiftReg TextLCD
Interface/Interface.hpp
- Committer:
- thomasmorris
- Date:
- 2019-04-11
- Revision:
- 4:1ef122d47bf3
- Parent:
- 3:3700f0c29710
- Child:
- 6:347c1f441b94
File content as of revision 4:1ef122d47bf3:
#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 class INTERFACE { public://Public member functions and variables INTERFACE(); ~INTERFACE(); void Init(); int Post(); void Serial(); void LCD(); //Public Functions //Public Variabls private://Private member functions and variables //Private Functions //Private Variables }; #endif //_INTERFACE_HPP_