1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-29 13:33:06 +01:00

Add PageDigitalOut

This commit is contained in:
norbert-walter
2025-12-14 22:42:30 +01:00
parent c6276cdcff
commit 142f6ca774
8 changed files with 173 additions and 8 deletions

View File

@@ -39,7 +39,7 @@ public:
commonData->keylock = !commonData->keylock;
return 0; // Commit the key
}
// Cood for zoom -
// Code for zoom -
if(key == 1){
zoom --; // Zoom -
if(zoom <7){
@@ -47,7 +47,7 @@ public:
}
return 0; // Commit the key
}
// Cood for zoom -
// Code for zoom -
if(key == 2){
zoom ++; // Zoom +
if(zoom >17){
@@ -68,7 +68,7 @@ public:
// Get config data
String lengthformat = config->getString(config->lengthFormat);
// bool simulation = config->getBool(config->useSimuData);
bool simulation = config->getBool(config->useSimuData);
bool holdvalues = config->getBool(config->holdvalues);
String flashLED = config->getString(config->flashLED);
String backlightMode = config->getString(config->backlight);