nlgplay for mbed

Dependencies:   SDFileSystemEx mbed

Committer:
bkc_mbed
Date:
Wed Sep 17 23:29:07 2014 +0000
Revision:
11:68032f2a11b9
Parent:
1:ec416e6d5739
added com mode.(untested)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bkc_mbed 0:2053640461b5 1 #ifndef __LCD_H__
bkc_mbed 0:2053640461b5 2 #define __LCD_H__
bkc_mbed 0:2053640461b5 3
bkc_mbed 0:2053640461b5 4 void lcd_printStr(const char *s);
bkc_mbed 0:2053640461b5 5 void lcd_setContrast(unsigned char c);
bkc_mbed 0:2053640461b5 6 void lcd_setCursor(unsigned char x,unsigned char y);
bkc_mbed 0:2053640461b5 7 void lcd_cls(void);
bkc_mbed 0:2053640461b5 8 void lcd_init();
bkc_mbed 1:ec416e6d5739 9 void lcd_printStr2(const char *s, const char *s2);
bkc_mbed 1:ec416e6d5739 10 void lcd_printStrY(int y,const char *s);
bkc_mbed 1:ec416e6d5739 11 void lcd_printStrYscr(int y,const char *s);
bkc_mbed 0:2053640461b5 12
bkc_mbed 0:2053640461b5 13 #endif