Browse Source

Merge pull request #424 from 446564/fix-GH162

fix Heltec v2 getBattMilliVolts ADC multiplier
pull/436/head
ripplebiz 12 months ago
committed by GitHub
parent
commit
81a0816e22
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/helpers/HeltecV2Board.h

2
src/helpers/HeltecV2Board.h

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

Loading…
Cancel
Save