Library to control a Graphics TFT connected to 4-wire SPI - revised for the Raio RA8875 Display Controller.

Dependents:   FRDM_RA8875_mPaint RA8875_Demo RA8875_KeyPadDemo SignalGenerator ... more

Fork of SPI_TFT by Peter Drescher

See Components - RA8875 Based Display

Enhanced touch-screen support - where it previous supported both the Resistive Touch and Capacitive Touch based on the FT5206 Touch Controller, now it also has support for the GSL1680 Touch Controller.

Offline Help Manual (Windows chm)

/media/uploads/WiredHome/ra8875.zip.bin (download, rename to .zip and unzip)

Revision:
33:b6b710758ab3
Parent:
31:c72e12cd5c67
Child:
37:f19b7e7449dc
--- a/TextDisplay.h	Tue Jan 21 03:28:36 2014 +0000
+++ b/TextDisplay.h	Wed Jan 22 03:50:55 2014 +0000
@@ -61,8 +61,8 @@
     */
     virtual RetCode_t cls() = 0;
     virtual RetCode_t locate(unsigned int column, unsigned int row) = 0;
-    virtual RetCode_t foreground(uint16_t colour) = 0;
-    virtual RetCode_t background(uint16_t colour) = 0;
+    virtual RetCode_t foreground(uint16_t color) = 0;
+    virtual RetCode_t background(uint16_t color) = 0;
     // putc (from Stream)
     // printf (from Stream)
 
@@ -74,7 +74,7 @@
     uint16_t _column;
     uint16_t _row;
 
-    // colours
+    // colors
     uint16_t _foreground;
     uint16_t _background;
     char *_path;