mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
Remove dependencies M5Unified and M5GFX because: - Sometimes the release doesn't even compile - The amount of functions is too close to the limit (I recently had to remove some code/dependency to be able to make a build at all) - Graphics performance issue since last update - Touch screen performance issues (not perfect yet, but better) - Compatibility issues with Tactility SPI/I2C versus M5Unified/M5GFX variants.
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
#include "CoreS3Power.h"
|
|
#include "TactilityCore.h"
|
|
|
|
#define TAG "core2_power"
|
|
|
|
bool CoreS3Power::supportsMetric(MetricType type) const {
|
|
switch (type) {
|
|
case BATTERY_VOLTAGE:
|
|
case IS_CHARGING:
|
|
case CHARGE_LEVEL:
|
|
return true;
|
|
case CURRENT:
|
|
return false;
|
|
}
|
|
|
|
return false; // Safety guard for when new enum values are introduced
|
|
}
|
|
|
|
bool CoreS3Power::getMetric(Power::MetricType type, Power::MetricData& data) {
|
|
switch (type) {
|
|
case BATTERY_VOLTAGE: {
|
|
float milliVolt;
|
|
if (axpDevice.getBatteryVoltage(milliVolt)) {
|
|
data.valueAsUint32 = (uint32_t)milliVolt;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
case CHARGE_LEVEL: {
|
|
float vbatMillis;
|
|
if (axpDevice.getBatteryVoltage(vbatMillis)) {
|
|
float vbat = vbatMillis / 1000.f;
|
|
float max_voltage = 4.20f;
|
|
float min_voltage = 2.69f; // From M5Unified
|
|
if (vbat > 2.69f) {
|
|
float charge_factor = (vbat - min_voltage) / (max_voltage - min_voltage);
|
|
data.valueAsUint8 = (uint8_t)(charge_factor * 100.f);
|
|
} else {
|
|
data.valueAsUint8 = 0;
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
case IS_CHARGING: {
|
|
Axp2101::ChargeStatus status;
|
|
if (axpDevice.getChargeStatus(status)) {
|
|
data.valueAsBool = (status == Axp2101::CHARGE_STATUS_CHARGING);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
case CURRENT:
|
|
return false;
|
|
}
|
|
|
|
return false; // Safety guard for when new enum values are introduced
|
|
}
|
|
|
|
bool CoreS3Power::isAllowedToCharge() const {
|
|
bool enabled;
|
|
if (axpDevice.isChargingEnabled(enabled)) {
|
|
return enabled;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void CoreS3Power::setAllowedToCharge(bool canCharge) {
|
|
axpDevice.setChargingEnabled(canCharge);
|
|
}
|
|
|
|
static std::shared_ptr<Power> power;
|
|
|
|
std::shared_ptr<Power> createPower() {
|
|
if (power == nullptr) {
|
|
power = std::make_shared<CoreS3Power>();
|
|
}
|
|
return power;
|
|
}
|