OMOTE/Platformio/HAL/HardwareModules/BatteryInterface.h

9 lines
183 B
C
Raw Normal View History

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