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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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 { |
|
|
|