Hello world

Dependents:   Esercitazione4n1-1

Committer:
DrMirko
Date:
Mon Oct 24 12:37:53 2016 +0000
Revision:
0:7cf16ffdf7d9
a

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DrMirko 0:7cf16ffdf7d9 1 #ifndef LCD_H
DrMirko 0:7cf16ffdf7d9 2 #define LCD_H
DrMirko 0:7cf16ffdf7d9 3 #include "mbed.h"
DrMirko 0:7cf16ffdf7d9 4 void toggle_enable(void); //function to toggle/pulse the enable bit
DrMirko 0:7cf16ffdf7d9 5 void LCD_init(void); //function to initialize the LCD
DrMirko 0:7cf16ffdf7d9 6 void display_to_LCD(char value); //function to display characters
DrMirko 0:7cf16ffdf7d9 7 void set_location(char location);
DrMirko 0:7cf16ffdf7d9 8 #endif