Refactored class members

This commit is contained in:
Magnus Persson
2022-01-18 23:33:34 +01:00
parent ddb34e129d
commit 37a1ca6058
20 changed files with 386 additions and 386 deletions

View File

@ -57,11 +57,11 @@ class SerialDebug {
class BatteryVoltage {
private:
float batteryLevel;
float _batteryLevel;
public:
void read();
float getVoltage() { return batteryLevel; }
float getVoltage() { return _batteryLevel; }
};
#if defined(COLLECT_PERFDATA)