by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"
LCD.h@0:519ae7e3077e, 2013-05-24 (annotated)
- Committer:
- robt
- Date:
- Fri May 24 21:33:46 2013 +0000
- Revision:
- 0:519ae7e3077e
by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
robt | 0:519ae7e3077e | 1 | //LCD.h file |
robt | 0:519ae7e3077e | 2 | |
robt | 0:519ae7e3077e | 3 | #ifndef LCD_H |
robt | 0:519ae7e3077e | 4 | #define LCD_H |
robt | 0:519ae7e3077e | 5 | |
robt | 0:519ae7e3077e | 6 | #include "mbed.h" |
robt | 0:519ae7e3077e | 7 | void display_to_LCD(char value); //function to display characters on the LCD |
robt | 0:519ae7e3077e | 8 | void toggle_enable(void); //function to toggle the enable bit |
robt | 0:519ae7e3077e | 9 | void LCD_init(void); //function to initialise the LCD |
robt | 0:519ae7e3077e | 10 | |
robt | 0:519ae7e3077e | 11 | #endif |