Esercitazione4_1
Dependencies: mbed
LCD.h
- Committer:
- dfalanga
- Date:
- 2016-11-28
- Revision:
- 0:723d0d8c0d09
File content as of revision 0:723d0d8c0d09:
/* Program Example 1: LCD.h header file 2. */ #ifndef LCD_H #define LCD_H #include "mbed.h" void toggle_enable(void); //function to toggle/pulse the enable bit void LCD_init(void); //function to initialize the LCD void display_to_LCD(char value); //function to display characters void set_location(char location); #endif