openHASP/src/hasp_tft.h
2020-11-23 12:19:47 +01:00

19 lines
349 B
C

/* MIT License - Copyright (c) 2020 Francis Van Roie
For full license information read the LICENSE file in the project folder */
#ifndef HASP_TFT_H
#define HASP_TFT_H
#ifndef USE_FSMC
#include "TFT_eSPI.h"
void tftSetup(TFT_eSPI & screen);
void IRAM_ATTR tftLoop(void);
void tftStop(void);
void tftShowConfig(TFT_eSPI & tft);
#endif
#endif