#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9341.h"
#define TFT_DC 9
#define TFT_CS 10
#define textSiye 3
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
int x = 0;
int y = 0;
void setup() {
};
void loop() {
tft.begin();
// y = A0;
tft.setCursor(x, y);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(textSiye);
tft.println("Hello, TFT!");
tft.setCursor(x, y + (textSiye *8));
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(2);
tft.println("I can has colors?");
//setTimeout(150);
}FPS: 0
Power: 0.00W
Power: 0.00W