nlgplay for mbed

Dependencies:   SDFileSystemEx mbed

lcd.h

Committer:
bkc_mbed
Date:
2014-05-19
Revision:
1:ec416e6d5739
Parent:
0:2053640461b5

File content as of revision 1:ec416e6d5739:

#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