mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-05-09 22:54:27 +02: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 |