Browse Source

fix Heltec v2 getBattMilliVolts

pull/424/head
Rob Loranger 12 months ago
parent
commit
52a579a366
  1. 2
      src/helpers/HeltecV2Board.h

2
src/helpers/HeltecV2Board.h

@ -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 {

Loading…
Cancel
Save