How to change font and font size in this code?
#include <UTFTGLUE.h> //use GLUE class and constructor
UTFTGLUE myGLCD(0,A2,A1,A3,A4,A0); //all dummy args
void setup() {
myGLCD.InitLCD();
myGLCD.setFont(SmallFont);
int buf[478];
int x, x2;
int y, y2;
int r;
// Clear the screen and draw the frame
myGLCD.clrScr();
myGLCD.setColor(255, 0, 0);
myGLCD.fillRect(0, 250, 479, 270);
myGLCD.setColor(64, 64, 64);
myGLCD.fillRect(0, 280, 479, 319);
myGLCD.setColor(255, 255, 255);
myGLCD.setBackColor(255, 0, 0);
myGLCD.print("WELCOME!", CENTER, 5);
myGLCD.setBackColor(64, 64, 64);
myGLCD.setColor(255,255,0);
myGLCD.print("abc", CENTER, 307);
}
void loop() {
}