add HalPowerManager

This commit is contained in:
Xuan Son Nguyen
2026-02-12 13:12:13 +01:00
parent f7b1113819
commit ea32ba0f8d
5 changed files with 82 additions and 64 deletions

26
lib/hal/HalPowerManager.h Normal file
View File

@@ -0,0 +1,26 @@
#pragma once
#include <Arduino.h>
#include <BatteryMonitor.h>
#include <InputManager.h>
#include "HalGPIO.h"
class HalPowerManager {
static constexpr int LOW_POWER_FREQ = 10; // MHz
int normalFreq = 0; // MHz
bool isLowPower = false;
public:
void begin();
// Control CPU frequency for power saving
void setPowerSaving(bool enabled);
// Setup wake up GPIO and enter deep sleep
void startDeepSleep(HalGPIO &gpio) const;
// Get battery percentage (range 0-100)
int getBatteryPercentage() const;
};