#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9163.h"
#define TFT_DC 9
#define TFT_CS 10
Adafruit_ILI9163 tft = Adafruit_ILI9163(TFT_CS, TFT_DC);
void setup() {
Serial.begin(115200);
tft.begin();
tft.drawRect(0, 0, 131, 131, 0xffff);
//tft.drawLine(0, 0, 0, 15, 0xf800);
tft.setCursor(0, 100);
tft.print("חשוון");
}
void loop() {
}