Skip to content

Commit 00b5d3b

Browse files
authored
Merge pull request #423 from 446564/fix-GH133
heltec v3 update ADC multipler to fix voltage reading
2 parents 7c421c1 + dbee0d8 commit 00b5d3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/HeltecV3Board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class HeltecV3Board : public ESP32Board {
9999

100100
digitalWrite(PIN_ADC_CTRL, !adc_active_state);
101101

102-
return (5.2 * (3.3 / 1024.0) * raw) * 1000;
102+
return (5.42 * (3.3 / 1024.0) * raw) * 1000;
103103
}
104104

105105
const char* getManufacturerName() const override {

0 commit comments

Comments
 (0)