Digital_project 57340500039 57340500070
Dependencies: mbed
Fork of Digital_project by
Diff: LCD4884.h
- Revision:
- 2:6b2526c99e5c
- Parent:
- 1:a4c852d25ead
--- a/LCD4884.h Mon Dec 07 16:12:55 2015 +0000 +++ b/LCD4884.h Wed Dec 09 10:55:01 2015 +0000 @@ -48,6 +48,17 @@ void LCD_write_string(unsigned char X,unsigned char Y,char *s, char mode); // *s can be input as "<your string>" void LCD_clear(void); // blank the screen void LCD_pixel(unsigned char X, unsigned char Y); //X,Y = x,y coodinate, mode : MENU_NORMAL = off/ others = on + void LCD_write_char_big (unsigned char X,unsigned char Y, unsigned char ch, char mode); + void LCD_write_string_big ( unsigned char X,unsigned char Y, char *string, char mode ); + char LCD_joystick(void); // return u = up, d = down, l = left, r = right, m = middle + + + + //include by ploy + void LCD_draw_bmp_pixel(unsigned char X,unsigned char Y,unsigned char *map,unsigned char Pix_x,unsigned char Pix_y); + + + }; } extern LCD4884 lcd;