David Smart / RA8875 Featured

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:
103:7e0464ca6c5c
Parent:
101:e0aad446094a
Child:
105:4f116006ba1f
diff -r fc60bfa0199f -r 7e0464ca6c5c RA8875.cpp
--- a/RA8875.cpp	Sat Jan 23 16:58:54 2016 +0000
+++ b/RA8875.cpp	Sun Feb 07 23:18:01 2016 +0000
@@ -628,6 +628,10 @@
         return 8;
 }
 
+RetCode_t RA8875::SetTextCursor(point_t p)
+{
+    return SetTextCursor(p.x, p.y);
+}
 
 RetCode_t RA8875::SetTextCursor(loc_t x, loc_t y)
 {
@@ -639,6 +643,14 @@
     return noerror;
 }
 
+point_t RA8875::GetTextCursor(void)
+{
+    point_t p;
+    
+    p.x = GetTextCursor_X();
+    p.y = GetTextCursor_Y();
+    return p;
+}
 
 loc_t RA8875::GetTextCursor_Y(void)
 {