Make casing of N/A consistent (majority was N/A)

This commit is contained in:
Benny Baumann 2020-11-26 20:19:19 +01:00 committed by BenBE
parent 2c27f1d9ab
commit 83bf8cfad6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ static void BatteryMeter_updateValues(Meter* this, char* buffer, int len) {
if (isnan(percent)) {
this->values[0] = NAN;
xSnprintf(buffer, len, "n/a");
xSnprintf(buffer, len, "N/A");
return;
}