show firmware version and build date on room server screen

Tento commit je obsažen v:
liamcottle
2025-04-08 23:09:55 +12:00
rodič 4a51cb98c6
revize bc820ae93e
3 změnil soubory, kde provedl 16 přidání a 6 odebrání
+2 -1
Zobrazit soubor
@@ -8,11 +8,12 @@ class UITask {
int _prevBtnState;
const char* _node_name;
const char* _build_date;
char _version_info[32];
void renderCurrScreen();
public:
UITask(DisplayDriver& display) : _display(&display) { _next_read = _next_refresh = 0; }
void begin(const char* node_name, const char* build_date);
void begin(const char* node_name, const char* build_date, const char* firmware_version);
void loop();
};