OMOTE/Platformio/HAL/HardwareModules/BatteryInterface.h
2023-09-14 06:34:04 +02:00

9 lines
No EOL
183 B
C++

#pragma once
#include "Notification.hpp"
class BatteryInterface {
public:
BatteryInterface() = default;
virtual int getPercentage() = 0;
virtual bool isCharging() = 0;
};