add Indicators

This commit is contained in:
Stephan Mühl
2023-04-10 13:02:20 +02:00
parent 04a2382ec5
commit c5c10f4d17
8 changed files with 159 additions and 19 deletions

View File

@@ -51,7 +51,7 @@ public:
void MatrixState(bool);
void generateNotification(const char *json);
void generateCustomPage(const String &name, const char *json);
void printText(int16_t x, int16_t y, const char *text, bool centered, byte textCase);
void printText(int16_t x, int16_t y, const char *text, bool centered, byte textCase);
bool setAutoTransition(bool active);
void switchToApp(const char *json);
void setNewSettings(const char *json);
@@ -66,6 +66,8 @@ public:
void setAppTime(uint16_t duration);
String getAppsAsJson();
String getStat();
void setIndicator1(bool state, uint16_t color);
void setIndicator2(bool state, uint16_t color);
};
extern DisplayManager_ &DisplayManager;