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
lcd.h@0:5dbeda619328, 2015-11-13 (annotated)
- Committer:
- shaizeen
- Date:
- Fri Nov 13 02:03:19 2015 +0000
- Revision:
- 0:5dbeda619328
lcd custom
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
shaizeen | 0:5dbeda619328 | 1 | // LCD.h file |
shaizeen | 0:5dbeda619328 | 2 | #ifndef LCD_H |
shaizeen | 0:5dbeda619328 | 3 | #define LCD_H |
shaizeen | 0:5dbeda619328 | 4 | #include "mbed.h" |
shaizeen | 0:5dbeda619328 | 5 | |
shaizeen | 0:5dbeda619328 | 6 | |
shaizeen | 0:5dbeda619328 | 7 | void display_to_LCD(char value) ; //function to display characters on the LCD |
shaizeen | 0:5dbeda619328 | 8 | void toggle_enable(void) ; //function to toggle the enable bit |
shaizeen | 0:5dbeda619328 | 9 | void LCD_init(void) ; //function to initialise the LCD |
shaizeen | 0:5dbeda619328 | 10 | |
shaizeen | 0:5dbeda619328 | 11 | |
shaizeen | 0:5dbeda619328 | 12 | #endif |