This is a port of Henning Kralsen's UTFT library for Arduino/chipKIT to mbed, refactored to make full use of C inheritance and access control, in order to reduce work when implementing new drivers and at the same time make the code more readable and easier to maintain. As of now supported are SSD1289 (16-bit interface), HX8340-B (serial interface) and ST7735 (serial interface). Drivers for other controllers will be added as time and resources to acquire the displays to test the code permit.

Dependents:   UTFT_SSD1289

Fork of TFTLCD by Todor Todorov

Revision:
2:81ed304b7e9b
Parent:
0:881ff0b71102
diff -r 14bef43daf6f -r 81ed304b7e9b ssd.h
--- a/ssd.h	Sat Dec 01 23:49:10 2012 +0000
+++ b/ssd.h	Sun Dec 02 00:12:43 2012 +0000
@@ -62,9 +62,9 @@
     virtual void Initialize( orientation_t orientation = LANDSCAPE );
     
 protected:
-    virtual void writeCmd( unsigned short cmd );
-    virtual void writeData( unsigned short data );
-    virtual void setXY( uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2 );
+    virtual void WriteCmd( unsigned short cmd );
+    virtual void WriteData( unsigned short data );
+    virtual void SetXY( uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2 );
     
 private:
     DigitalOut _lcd_pin_reset, _lcd_pin_wr;