2019-12-27 10:05:35 -05:00
|
|
|
#pragma once
|
2020-11-15 09:05:51 -05:00
|
|
|
#include <cstdint>
|
2019-12-27 10:05:35 -05:00
|
|
|
#include <drivers/include/nrfx_saadc.h>
|
2021-01-14 15:22:36 -05:00
|
|
|
#include <array>
|
|
|
|
#include <numeric>
|
2019-12-27 10:05:35 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
2021-01-14 16:11:17 -05:00
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
class Battery {
|
|
|
|
public:
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2021-04-05 10:22:10 -04:00
|
|
|
Battery();
|
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
void Init();
|
|
|
|
void Update();
|
2021-04-04 08:51:22 -04:00
|
|
|
|
|
|
|
int PercentRemaining();
|
|
|
|
float Voltage();
|
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
bool IsCharging() const { return isCharging; }
|
|
|
|
bool IsPowerPresent() const { return isPowerPresent; }
|
|
|
|
|
|
|
|
private:
|
2021-04-05 10:22:10 -04:00
|
|
|
static Battery *instance;
|
|
|
|
nrf_saadc_value_t saadc_value;
|
|
|
|
|
2019-12-27 11:05:09 -05:00
|
|
|
static constexpr uint32_t chargingPin = 12;
|
|
|
|
static constexpr uint32_t powerPresentPin = 19;
|
|
|
|
static constexpr nrf_saadc_input_t batteryVoltageAdcInput = NRF_SAADC_INPUT_AIN7;
|
2021-04-05 10:22:10 -04:00
|
|
|
float voltage = 0.0f;
|
|
|
|
int percentRemaining = -1;
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
bool isCharging = false;
|
|
|
|
bool isPowerPresent = false;
|
2021-04-05 10:22:10 -04:00
|
|
|
|
2021-04-04 08:51:22 -04:00
|
|
|
void SaadcInit();
|
|
|
|
|
2021-04-05 10:22:10 -04:00
|
|
|
void SaadcEventHandler(nrfx_saadc_evt_t const * p_event);
|
|
|
|
static void adcCallbackStatic(nrfx_saadc_evt_t const *event);
|
2019-12-27 10:05:35 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|