1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 15:03:07 +01:00

Fix for hanging voltage page by using average values

This commit is contained in:
norbert-walter
2022-03-27 16:05:51 +02:00
parent 27b471b0b8
commit 526806cfcb
2 changed files with 7 additions and 1 deletions

View File

@@ -85,7 +85,7 @@ public:
value1 = commonData.data.batteryVoltage300; // Average 300s
break;
default:
value1 = commonData.data.batteryVoltage; // Default
value1 = commonData.data.batteryVoltage; // Default
break;
}
bool valid1 = true;