mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-13 01:37:43 +03:00
20 lines
261 B
C++
20 lines
261 B
C++
#ifndef Display_H_
|
|
#define Display_H_
|
|
|
|
#include <TFT_eSPI.h>
|
|
|
|
class Display {
|
|
private:
|
|
TFT_eSPI* tft;
|
|
|
|
public:
|
|
Display();
|
|
~Display();
|
|
|
|
void initTFT();
|
|
void centerMsg(String text);
|
|
void tempUpdates(String temp, String hum, String status);
|
|
};
|
|
|
|
|
|
#endif |