mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
37 lines
946 B
C++
37 lines
946 B
C++
#include "SimulatorPower.h"
|
|
|
|
constexpr auto* TAG = "SimulatorPower";
|
|
|
|
bool SimulatorPower::supportsMetric(MetricType type) const {
|
|
switch (type) {
|
|
using enum MetricType;
|
|
case IsCharging:
|
|
case Current:
|
|
case BatteryVoltage:
|
|
case ChargeLevel:
|
|
return true;
|
|
}
|
|
|
|
return false; // Safety guard for when new enum values are introduced
|
|
}
|
|
|
|
bool SimulatorPower::getMetric(MetricType type, MetricData& data) {
|
|
switch (type) {
|
|
using enum MetricType;
|
|
case IsCharging:
|
|
data.valueAsBool = true;
|
|
return true;
|
|
case Current:
|
|
data.valueAsInt32 = 42;
|
|
return true;
|
|
case BatteryVoltage:
|
|
data.valueAsUint32 = 4032;
|
|
return true;
|
|
case ChargeLevel:
|
|
data.valueAsUint8 = 100;
|
|
return true;
|
|
}
|
|
|
|
return false; // Safety guard for when new enum values are introduced
|
|
}
|