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:
73:f22a18707b5e
Parent:
72:ecffe56af969
Child:
76:c981284eb513
--- a/GraphicsDisplay.h	Sat Oct 11 17:24:29 2014 +0000
+++ b/GraphicsDisplay.h	Sun Nov 09 18:52:46 2014 +0000
@@ -207,11 +207,11 @@
     /// @note This method probably has very little value outside of
     ///         the internal methods for reading BMP files.
     ///
-    /// @param colorPalette is the handle to the color palette to use.
-    /// @param i is the index into the color palette.
+    /// @param colorPaletteArray is the handle to the color palette array to use.
+    /// @param index is the index into the color palette.
     /// @returns the color in color_t format.
     ///
-    color_t RGBQuadToRGB16(RGBQUAD * colorPalette, uint16_t i);
+    color_t RGBQuadToRGB16(RGBQUAD * colorPaletteArray, uint16_t index);
     
     /// This method converts a 16-bit color value into a 24-bit RGB Quad.
     ///