15 lines
236 B
C++
15 lines
236 B
C++
#include "sdkconfig.h"
|
|
#include <Arduino.h>
|
|
|
|
#include <HardwareSerial.h>
|
|
#include <list>
|
|
#include <TFT_eSPI.h>
|
|
|
|
TFT_eSPI tft = TFT_eSPI(TFT_WIDTH, TFT_HEIGHT);
|
|
|
|
const uint8_t backlightChannel = 4;
|
|
|
|
// Events
|
|
void setup();
|
|
void loop();
|
|
|