Files
OpenEPaperLink/ESP32_AP-Flasher/include/ips_display.h
Nic Limper ab83cb03cc improvements for yellow ap / esp32-c6
- Wifi connection progress is now visible on the TFT
- passthrough serial logging from the C6 to the S3 terminal for easier debugging
- no checks on force_flash and APtag-firmware version when C6 is used
2023-08-31 02:13:45 +02:00

13 lines
173 B
C

#include <Arduino.h>
#include <TFT_eSPI.h>
#ifdef YELLOW_IPS_AP
extern TFT_eSPI tft2;
extern int32_t tftid;
extern uint8_t YellowSense;
void TFTLog(String text);
#endif