1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-03-28 18:06:37 +01:00

Integrated config menu into system page

This commit is contained in:
2025-08-03 21:18:08 +02:00
parent aed389f3b2
commit d5b0af3b19
7 changed files with 143 additions and 28 deletions

View File

@@ -44,6 +44,7 @@ private:
uint16_t y;
uint16_t w;
uint16_t h;
void (*fptrCallback)();
public:
ConfigMenu(String title, uint16_t menu_x, uint16_t menu_y);
@@ -60,4 +61,6 @@ public:
Point getXY();
Rect getRect();
Rect getItemRect(int8_t index);
void setCallback(void (*callback)());
void storeValues();
};