Merge pull request #424 from 446564/fix-GH162

fix Heltec v2 getBattMilliVolts ADC multiplier
This commit is contained in:
ripplebiz
2025-06-21 13:42:03 +10:00
committed by GitHub

View File

@@ -68,7 +68,7 @@ public:
}
raw = raw / 8;
return (1.883 * (2 / 1024.0) * raw) * 1000;
return (1.98 * (2 / 1024.0) * raw) * 1000;
}
const char* getManufacturerName() const override {