nlgplay for mbed

Dependencies:   SDFileSystemEx mbed

lcd.h

Committer:
bkc_mbed
Date:
2014-09-17
Revision:
11:68032f2a11b9
Parent:
1:ec416e6d5739

File content as of revision 11:68032f2a11b9:

#ifndef __LCD_H__
#define __LCD_H__

void lcd_printStr(const char *s);
void lcd_setContrast(unsigned char c);
void lcd_setCursor(unsigned char x,unsigned char y);
void lcd_cls(void);
void lcd_init();
void lcd_printStr2(const char *s, const char *s2);
void lcd_printStrY(int y,const char *s);
void lcd_printStrYscr(int y,const char *s);

#endif