A lib for accessing ST7626 based lcds. It provides a set_pixel function. It is only tested with one display.

Revision:
2:04fb8af3ecb0
Parent:
1:ae0b4880e9db
Child:
4:a4925df73101
--- a/lcd.h	Sat Jan 08 19:17:57 2011 +0000
+++ b/lcd.h	Sat Jan 08 22:28:13 2011 +0000
@@ -31,10 +31,8 @@
 void LoadPaint(void);
 void LoadEEPROM(void);
 void ST7626_Init(void);
-void lcd_putpixel(char color, int x, int y);
+void lcd_putpixel( int x, int y, int16_t color);
 void LCD_clear(int16_t GroundColor);
-void lcd_putc(char c, int x, int y);
-void lcd_printf(char *s, int x, int y);
 void Write(unsigned char , int8_t ); //mode (befehl oder daten) & die Daten.
 void resetdisp(void);
 void LcdLoop();