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:
22:f6ea795eb541
Parent:
21:3c1efb192927
Child:
23:a50ded45dbaf
--- a/RA8875.h	Sun Jan 12 21:11:15 2014 +0000
+++ b/RA8875.h	Sun Jan 12 21:18:47 2014 +0000
@@ -501,10 +501,10 @@
     /// @param y1 is the vertical start of the line and must be <= y2.
     /// @param x2 is the horizontal end of the line and must be >= x1.
     /// @param y2 is the vertical end of the line and must be >= y1.
-    /// @param radius1 defines the horizontal width of the curved corner. Take care
+    /// @param radius1 defines the horizontal radius of the curved corner. Take care
     ///         that this value < 1/2 the width of the rectangle, or bad_parameter 
     ///         is returned.
-    /// @param radius2 defines the vertical width of the curved corner. Take care
+    /// @param radius2 defines the vertical radius of the curved corner. Take care
     ///         that this value < 1/2 the height of the rectangle, or bad_parameter 
     ///         is returned.
     /// @param color defines the foreground color.
@@ -528,10 +528,10 @@
     /// @param y1 is the vertical start of the line and must be <= y2.
     /// @param x2 is the horizontal end of the line and must be >= x1.
     /// @param y2 is the vertical end of the line and must be >= y1.
-    /// @param radius1 defines the horizontal width of the curved corner. Take care
+    /// @param radius1 defines the horizontal radius of the curved corner. Take care
     ///         that this value < 1/2 the width of the rectangle, or bad_parameter 
     ///         is returned.
-    /// @param radius2 defines the vertical width of the curved corner. Take care
+    /// @param radius2 defines the vertical radius of the curved corner. Take care
     ///         that this value < 1/2 the height of the rectangle, or bad_parameter 
     ///         is returned.
     /// @param color defines the foreground color.
@@ -552,10 +552,10 @@
     /// @param y1 is the vertical start of the line and must be <= y2.
     /// @param x2 is the horizontal end of the line and must be >= x1.
     /// @param y2 is the vertical end of the line and must be >= y1.
-    /// @param radius1 defines the horizontal width of the curved corner. Take care
+    /// @param radius1 defines the horizontal radius of the curved corner. Take care
     ///         that this value < 1/2 the width of the rectangle, or bad_parameter 
     ///         is returned.
-    /// @param radius2 defines the vertical width of the curved corner. Take care
+    /// @param radius2 defines the vertical radius of the curved corner. Take care
     ///         that this value < 1/2 the height of the rectangle, or bad_parameter 
     ///         is returned.
     /// @param fillit is optional to FILL the rectangle. default is NOFILL.
@@ -660,8 +660,8 @@
     ///
     /// @param x is the horizontal center of the ellipse.
     /// @param y is the vertical center of the ellipse.
-    /// @param radius1 defines the horizontal width of the ellipse.
-    /// @param radius2 defines the vertical width of the ellipse.
+    /// @param radius1 defines the horizontal radius of the ellipse.
+    /// @param radius2 defines the vertical radius of the ellipse.
     /// @param color defines the foreground color.
     /// @param fillit defines whether the circle is filled or not.
     /// @returns success/failure code. @see RetCode_t.
@@ -675,8 +675,8 @@
     ///
     /// @param x is the horizontal center of the ellipse.
     /// @param y is the vertical center of the ellipse.
-    /// @param radius1 defines the horizontal width of the ellipse.
-    /// @param radius2 defines the vertical width of the ellipse.
+    /// @param radius1 defines the horizontal radius of the ellipse.
+    /// @param radius2 defines the vertical radius of the ellipse.
     /// @param fillit defines whether the circle is filled or not.
     /// @returns success/failure code. @see RetCode_t.
     ///