Dependencies:   TextLCD mbed

Committer:
jomfec
Date:
Mon May 02 09:04:32 2016 +0000
Revision:
0:61dd4bb6eebc
INFO2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jomfec 0:61dd4bb6eebc 1 // LCD.h file
jomfec 0:61dd4bb6eebc 2 #ifndef LCD_H
jomfec 0:61dd4bb6eebc 3 #define LCD_H
jomfec 0:61dd4bb6eebc 4 #include "mbed.h"
jomfec 0:61dd4bb6eebc 5 void display_to_LCD(char value); //fonction d'affichage des carac.
jomfec 0:61dd4bb6eebc 6 void toggle_enable(void); //fonction d'inversion dubit enable
jomfec 0:61dd4bb6eebc 7 void LCD_init(void); // fonction d'initialisation du LCD
jomfec 0:61dd4bb6eebc 8 #endif
jomfec 0:61dd4bb6eebc 9