#include "myFonts.h"
#include <TFT_eSPI.h>
#include <Adafruit_GFX.h>
TFT_eSPI *tft;
TFT_eSPI tft_ext;
TFT_eSprite bg_spr = TFT_eSprite(&tft_ext);
#include <SPI.h> // this is needed for display
#define latin Latin_Hiragana_24
#define small NotoSansBold15
#define digits NotoSansMonoSCB20
// The display also uses hardware SPI, plus #9 & #10
#define TFT_CS 15
#define TFT_DC 2
#define TFT_MOSI 23
#define TFT_SCLK 18
float dispTemp = 22.3;
//TFT_eSPI tft = TFT_eSPI(); // Invoke custom library with default width and height
void setup(void) {
tft_ext.begin();
tft = &tft_ext;
tft->setRotation(0);
}
void loop() {
}