Paso 1: fuente
Esta es la fuente
#include
#include #define LCD_CS A3 LCD_CD A2 de #define #define LCD_WR A1 #define LCD_RD A0 #define LCD_RESET A4 Adafruit_TFTLCD tft (LCD_CS, LCD_CD, LCD_WR, LCD_RD, LCD_RESET); #define negro 0 x 0000 #define rojo 0xF800 #define verde 0x07E0 #define blanco 0xFFFF #define azul 0x001F #define cian 0x07FF #define amarillo 0xFFE0 #define MAGENTA 0xF81F void setup(void) {tft.begin(0x9341); tft.fillScreen(WHITE); / / aquí puedes cambiar el color de fondo} void loop(void) {tft.setTextSize(3); //you puede cambiar la fuente tamaño aquí tft.setTextColor(BLACK); / / se puede cambiar el color de la fuente aquí //You puede ingresar su texto aquí tft.println(""); TFT.println ("Simple"); TFT.println ("Arduino"); TFT.println ("TFT pantalla"); TFT.println ("texto"); TFT.println ("Tutorial"); tft.setTextColor(BLUE); TFT.println ("Hi: D"); Delay(9999999999);