nlgplay for mbed

Dependencies:   SDFileSystemEx mbed

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 void lcd_printStr(const char *s);
00005 void lcd_setContrast(unsigned char c);
00006 void lcd_setCursor(unsigned char x,unsigned char y);
00007 void lcd_cls(void);
00008 void lcd_init();
00009 void lcd_printStr2(const char *s, const char *s2);
00010 void lcd_printStrY(int y,const char *s);
00011 void lcd_printStrYscr(int y,const char *s);
00012 
00013 #endif