OMOTE/Platformio/HAL/HardwareInterfaces/BatteryInterface.h
Matthew Colvin a771c64c71 rename interface folder to HardwareInterfaces
rename HardwareInterface file to hardware
abstract.

update ini to reflect new file structure
2023-09-09 21:44:47 -04:00

9 lines
No EOL
201 B
C++

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