Files
crosspoint-reader-mod/lib/hal/HalPowerManager.h

28 lines
613 B
C
Raw Normal View History

2026-02-12 13:12:13 +01:00
#pragma once
#include <Arduino.h>
#include <BatteryMonitor.h>
#include <InputManager.h>
#include "HalGPIO.h"
class HalPowerManager {
2026-02-12 13:19:37 +01:00
int normalFreq = 0; // MHz
2026-02-12 13:12:13 +01:00
bool isLowPower = false;
public:
2026-02-12 13:19:37 +01:00
static constexpr int LOW_POWER_FREQ = 10; // MHz
static constexpr unsigned long IDLE_POWER_SAVING_MS = 3000; // ms
2026-02-12 13:12:13 +01:00
void begin();
// Control CPU frequency for power saving
void setPowerSaving(bool enabled);
// Setup wake up GPIO and enter deep sleep
2026-02-12 13:19:37 +01:00
void startDeepSleep(HalGPIO& gpio) const;
2026-02-12 13:12:13 +01:00
// Get battery percentage (range 0-100)
int getBatteryPercentage() const;
};