The final project of Embedde class.

Dependencies:   C12832 LM75B ESP-call MMA7660

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LCD.h Source File

LCD.h

00001 #ifndef _LCD_H
00002 #define _LCD_H
00003 
00004 #include "mbed.h"
00005 #include "C12832.h"
00006 
00007 extern Semaphore semaphoreLCD;
00008 extern C12832  _lcd;
00009 
00010 
00011 #define LCD_LOADING_TERM    500
00012 
00013 void lcdInit(void);
00014 void lcdShowLoadingSimbolStart(int x, int y);
00015 void lcdShowLoadingSimbolTerminate(void);
00016 
00017 #endif