#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#include <Adafruit_FT6206.h>
#include "OS_Functions.h"
void setup() {
Serial.begin(115200);
tft.begin();
ts.begin(FT6206_ADDR);
tft.setRotation(0); // adjust the screen rotation as needed
tft.fillScreen(ILI9341_BLACK); // fill the screen with black color
}
void loop() {
Serial.print(GUI_Keypad(false,"Keypad"));
}