Smart coffee machine with facial recognition and remote control

Dependencies:   Camera_LS_Y201 EthernetInterface EthernetNetIf HTTPClient SRF05 TextLCD mbed-rtos mbed-src

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ecran_lcd.h Source File

ecran_lcd.h

00001 #ifndef ECRAN_H
00002 #define ECRAN_H
00003 
00004 #include "mbed.h"
00005 #include "rtos.h"
00006 #include "TextLCD.h"
00007 
00008 void thread_ecran(void const *args);
00009 void afficherSurUneLigne(const char* texte, int ligne);
00010 void faireDefilerSurEcran(const char* texte, int vitesse); /* surement deprecated */
00011 void afficherAuCentreDeLEcran(const char* texte1, const char* texte2);
00012 void afficherAuCentreDeLEcran(const char* texte_1_haut, const char* texte_1_bas, const char* texte_2_haut, const char* texte_2_bas);
00013 void afficherAuCentreDeLEcran(int nombre1, int nombre2);
00014 
00015 #endif