Esercitazione4_1
Dependencies: mbed
LCD.h@0:723d0d8c0d09, 2016-11-28 (annotated)
- Committer:
- dfalanga
- Date:
- Mon Nov 28 10:35:04 2016 +0000
- Revision:
- 0:723d0d8c0d09
Esercitazione4_1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dfalanga | 0:723d0d8c0d09 | 1 | /* Program Example 1: LCD.h header file 2. */ |
dfalanga | 0:723d0d8c0d09 | 2 | #ifndef LCD_H |
dfalanga | 0:723d0d8c0d09 | 3 | #define LCD_H |
dfalanga | 0:723d0d8c0d09 | 4 | #include "mbed.h" |
dfalanga | 0:723d0d8c0d09 | 5 | void toggle_enable(void); //function to toggle/pulse the enable bit |
dfalanga | 0:723d0d8c0d09 | 6 | void LCD_init(void); //function to initialize the LCD |
dfalanga | 0:723d0d8c0d09 | 7 | void display_to_LCD(char value); //function to display characters |
dfalanga | 0:723d0d8c0d09 | 8 | void set_location(char location); |
dfalanga | 0:723d0d8c0d09 | 9 | #endif |