Demonstration of Soft Fonts

Dependencies:   mbed RA8875

Fork of RA8875_Demo by David Smart

Demo of Software based fonts mixed with RA8875 hosted fonts.

/media/uploads/WiredHome/softfont2.png

Revision:
16:c64e1fe2392f
Parent:
15:b4e3349cd319
--- a/main.cpp	Mon Mar 04 12:14:35 2019 +0000
+++ b/main.cpp	Sun Jul 28 03:23:53 2019 +0000
@@ -17,7 +17,7 @@
 #include "FixedFont54x96.h"
 #include "MyFont18x32.h"
 
-RA8875 lcd(p5, p6, p7, p12, NC, "tft");    // MOSI, MISO, SCK, /ChipSelect, /reset, name
+RA8875 lcd(p5,p6,p7,p12,NC, "tft");    // MOSI, MISO, SCK, /ChipSelect, /reset, name
 LocalFileSystem local("local");     // Because I want <PrintScreen>
 Serial pc(USBTX, USBRX);            // And a little feedback
 Timer measurement;
@@ -25,12 +25,11 @@
 
 int main()
 {
-    
     pc.baud(460800);                            // I like a snappy terminal, so crank it up!
     pc.printf("\r\nRA8875 Soft Fonts - Build " __DATE__ " " __TIME__ "\r\n");
 
     measurement.start();
-    lcd.init(480,272,8, 30);
+    lcd.init(800,480,8, 30);
     
     // **************************
     //RunTestSet(lcd, pc);  // If the library was compiled for test mode...