You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
356 B
20 lines
356 B
#ifndef __AXP2101_H__
|
|
#define __AXP2101_H__
|
|
|
|
#include "i2c_device.h"
|
|
|
|
class Axp2101 : public I2cDevice {
|
|
public:
|
|
Axp2101(i2c_master_bus_handle_t i2c_bus, uint8_t addr);
|
|
bool IsCharging();
|
|
bool IsDischarging();
|
|
bool IsChargingDone();
|
|
int GetBatteryLevel();
|
|
void PowerOff();
|
|
|
|
private:
|
|
int GetBatteryCurrentDirection();
|
|
};
|
|
|
|
#endif
|