Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
34
libs/platform/battery_tracker.hpp
Normal file
34
libs/platform/battery_tracker.hpp
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#pragma once
|
||||
|
||||
#include <chrono>
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
namespace platform
|
||||
{
|
||||
// Note: this class is NOT thread-safe.
|
||||
class BatteryLevelTracker
|
||||
{
|
||||
public:
|
||||
class Subscriber
|
||||
{
|
||||
public:
|
||||
virtual void OnBatteryLevelReceived(uint8_t level) = 0;
|
||||
|
||||
protected:
|
||||
virtual ~Subscriber() = default;
|
||||
};
|
||||
|
||||
void Subscribe(Subscriber * subscriber);
|
||||
void Unsubscribe(Subscriber * subscriber);
|
||||
void UnsubscribeAll();
|
||||
|
||||
private:
|
||||
void RequestBatteryLevel();
|
||||
|
||||
std::vector<Subscriber *> m_subscribers;
|
||||
std::chrono::system_clock::time_point m_lastRequestTime;
|
||||
uint8_t m_lastReceivedLevel = 0;
|
||||
bool m_isTrackingInProgress = false;
|
||||
};
|
||||
} // namespace platform
|
||||
Loading…
Add table
Add a link
Reference in a new issue