#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#include <Adafruit_FT6206.h>
#include "OS_Functions.h"
void setup() {
Serial.begin(115200);
display.begin();
ts.begin(FT6206_ADDR);
display.setRotation(0); // adjust the screen rotation as needed
display.fillScreen(ILI9341_BLACK); // fill the screen with black color
}
void loop() {
GUI_Window(10, 20, 45, 45, "Hello");
GUI_Window(150, 40, 45, 45, "I");
GUI_Window(20, 100, 45, 45, "Am");
GUI_Window(100, 175, 100, 75, "Vasco");
delay(100);
}
Loading
ili9341-cap-touch
ili9341-cap-touch