Wessel
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
12 additions and
0 deletions
-
src/helpers/ui/ST7735Display.h
|
|
|
@ -6,6 +6,18 @@ |
|
|
|
#include "TFT_eSPI.h" |
|
|
|
#include <helpers/RefCountedDigitalPin.h> |
|
|
|
|
|
|
|
#if defined(ESP32) && defined(FS_NO_GLOBALS) |
|
|
|
// TFT_eSPI with SMOOTH_FONT defines FS_NO_GLOBALS before including FS.h,
|
|
|
|
// which suppresses the global aliases the rest of the codebase relies on.
|
|
|
|
#include <FS.h> |
|
|
|
using fs::FS; |
|
|
|
using fs::File; |
|
|
|
using fs::SeekMode; |
|
|
|
using fs::SeekSet; |
|
|
|
using fs::SeekCur; |
|
|
|
using fs::SeekEnd; |
|
|
|
#endif |
|
|
|
|
|
|
|
class ST7735Display : public DisplayDriver { |
|
|
|
bool _isOn; |
|
|
|
RefCountedDigitalPin* _peripher_power; |
|
|
|
|