Update esp32c3 support

This commit is contained in:
Magnus Persson
2022-10-17 20:19:20 +02:00
parent a9347c7e03
commit 6262cec27d
10 changed files with 150 additions and 59 deletions

View File

@ -88,9 +88,10 @@ class FloatHistoryLog {
class BatteryVoltage {
private:
float _batteryLevel;
float _batteryLevel = 0;
public:
BatteryVoltage();
void read();
float getVoltage() { return _batteryLevel; }
};