mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-19 11:44:59 +01:00
16 lines
261 B
C++
16 lines
261 B
C++
#ifndef BATTERY_UTILS_H_
|
|
#define BATTERY_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace BATTERY_Utils {
|
|
|
|
float checkInternalVoltage();
|
|
float checkExternalVoltage();
|
|
void checkIfShouldSleep(); // ????
|
|
void startupBatteryHealth();
|
|
|
|
}
|
|
|
|
#endif |