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:
209:08fc22dea762
Parent:
208:c610b031388d
--- a/RA8875.cpp	Sun Apr 04 17:15:57 2021 +0000
+++ b/RA8875.cpp	Sun Apr 04 20:14:06 2021 +0000
@@ -2458,6 +2458,18 @@
 }
 
 
+RetCode_t RA8875::ellipse(point_t p, dim_t radius1, dim_t radius2, color_t color, fill_t fillit)
+{
+    return ellipse(p.x, p.y, radius1, radius2, color, fillit);
+}
+
+
+RetCode_t RA8875::fillellipse(point_t p, dim_t radius1, dim_t radius2, color_t color, fill_t fillit)
+{
+    return fillellipse(p.x, p.y, radius1, radius2, color, fillit);
+}
+
+
 RetCode_t RA8875::ellipse(loc_t x, loc_t y, dim_t radius1, dim_t radius2, color_t color, fill_t fillit)
 {
     foreground(color);