- WiFi Connect app is now hidden by default, but accessible at the bottom of the WiFi Manage app when WiFi is turned on. - WiFi service now turns on WiFi when calling connect() and WiFi is not on. - Removed `blocking` option for `service::loader::startApp()`. This feature was unused and complex. - Various apps: Moved private headers into Private/ folder. - Various apps: created start() function for easy starting. - Added documentation to all TactilityC APIs - Refactored various `enum` into `class enum` - Refactor M5Stack `initBoot()` (but VBus is still 0V for some reason)
35 lines
906 B
C++
35 lines
906 B
C++
#pragma once
|
|
|
|
#include "hal/i2c/I2c.h"
|
|
#include "I2cDevice/I2cDevice.h"
|
|
|
|
#define AXP2101_ADDRESS 0x34
|
|
|
|
/**
|
|
* References:
|
|
* - https://github.com/m5stack/M5Unified/blob/master/src/utility/AXP2101_Class.cpp
|
|
* - http://file.whycan.com/files/members/6736/AXP2101_Datasheet_V1.0_en_3832.pdf
|
|
*/
|
|
class Axp2101 : I2cDevice {
|
|
|
|
public:
|
|
|
|
enum ChargeStatus {
|
|
CHARGE_STATUS_CHARGING = 0b01,
|
|
CHARGE_STATUS_DISCHARGING = 0b10,
|
|
CHARGE_STATUS_STANDBY = 0b00
|
|
};
|
|
|
|
explicit Axp2101(i2c_port_t port) : I2cDevice(port, AXP2101_ADDRESS) {}
|
|
|
|
bool setRegisters(uint8_t* bytePairs, size_t bytePairsSize) const;
|
|
|
|
bool getBatteryVoltage(float& vbatMillis) const;
|
|
bool getChargeStatus(ChargeStatus& status) const;
|
|
bool isChargingEnabled(bool& enabled) const;
|
|
bool setChargingEnabled(bool enabled) const;
|
|
|
|
bool isVBus() const;
|
|
bool getVBusVoltage(float& out) const;
|
|
};
|