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:
37:f19b7e7449dc
Parent:
33:b6b710758ab3
Child:
46:1321832f11d8
--- a/TextDisplay.cpp	Sat Jan 25 00:00:02 2014 +0000
+++ b/TextDisplay.cpp	Sat Jan 25 19:47:33 2014 +0000
@@ -65,7 +65,7 @@
     return noerror;
 }
 
-RetCode_t TextDisplay::locate(unsigned int column, unsigned int row)
+RetCode_t TextDisplay::locate(textloc_t column, textloc_t row)
 {
     INFO("locate(%d,%d)", column, row);
     _column = column;
@@ -80,14 +80,14 @@
 
 RetCode_t TextDisplay::foreground(uint16_t color)
 {
-    INFO("foreground(%4X)", color);
+    //INFO("foreground(%4X)", color);
     _foreground = color;
     return noerror;
 }
 
 RetCode_t TextDisplay::background(uint16_t color)
 {
-    INFO("background(%4X)", color);
+    //INFO("background(%4X)", color);
     _background = color;
     return noerror;
 }