Merge pull request #424 from 446564/fix-GH162

fix Heltec v2 getBattMilliVolts ADC multiplier
Этот коммит содержится в:
ripplebiz
2025-06-21 13:42:03 +10:00
коммит произвёл GitHub
родитель 00b5d3bcd5 52a579a366
Коммит 81a0816e22
+1 -1
Просмотреть файл
@@ -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 {