2019-12-27 15:05:35 +00:00
|
|
|
#pragma once
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <cstdint>
|
2019-12-27 15:05:35 +00:00
|
|
|
#include <drivers/include/nrfx_saadc.h>
|
2021-01-14 20:22:36 +00:00
|
|
|
#include <array>
|
|
|
|
#include <numeric>
|
2019-12-27 15:05:35 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
2021-01-14 20:22:36 +00:00
|
|
|
// A simple circular buffer that can be used to average
|
2021-01-16 19:18:55 +00:00
|
|
|
// out the sensor values
|
2021-01-14 20:22:36 +00:00
|
|
|
template <int N>
|
|
|
|
class CircBuffer {
|
|
|
|
public:
|
|
|
|
CircBuffer() : arr{}, sz{}, cap{N}, loc{} {}
|
|
|
|
void insert(const float num) {
|
|
|
|
loc %= cap;
|
|
|
|
arr[loc++] = num;
|
|
|
|
if (sz != cap) {
|
|
|
|
sz++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 18:51:32 +00:00
|
|
|
int GetAverage() const {
|
|
|
|
int sum = std::accumulate(arr.begin(), arr.end(), 0.0f);
|
2021-01-14 20:22:36 +00:00
|
|
|
return (sum / sz);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::array<float, N> arr;
|
|
|
|
uint8_t sz;
|
|
|
|
uint8_t cap;
|
|
|
|
uint8_t loc;
|
|
|
|
};
|
2021-01-14 21:11:17 +00:00
|
|
|
|
2019-12-27 15:05:35 +00:00
|
|
|
class Battery {
|
|
|
|
public:
|
|
|
|
void Init();
|
|
|
|
void Update();
|
2021-01-16 18:51:32 +00:00
|
|
|
int PercentRemaining() const { return percentRemainingBuffer.GetAverage(); }
|
2019-12-27 15:05:35 +00:00
|
|
|
float Voltage() const { return voltage; }
|
|
|
|
bool IsCharging() const { return isCharging; }
|
|
|
|
bool IsPowerPresent() const { return isPowerPresent; }
|
|
|
|
|
|
|
|
private:
|
2019-12-27 16:05:09 +00: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-01-14 20:22:36 +00:00
|
|
|
static constexpr uint8_t percentRemainingSamples = 10;
|
2019-12-27 15:05:35 +00:00
|
|
|
static void SaadcEventHandler(nrfx_saadc_evt_t const * p_event);
|
2021-01-14 20:22:36 +00:00
|
|
|
CircBuffer<percentRemainingSamples> percentRemainingBuffer {};
|
2019-12-27 15:05:35 +00:00
|
|
|
float voltage = 0.0f;
|
|
|
|
bool isCharging = false;
|
|
|
|
bool isPowerPresent = false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|