by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"
LCD.h
- Committer:
- robt
- Date:
- 2013-05-24
- Revision:
- 0:519ae7e3077e
File content as of revision 0:519ae7e3077e:
//LCD.h file #ifndef LCD_H #define LCD_H #include "mbed.h" void display_to_LCD(char value); //function to display characters on the LCD void toggle_enable(void); //function to toggle the enable bit void LCD_init(void); //function to initialise the LCD #endif