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
commit 81a0816e22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {