mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-16 18:24:45 +01:00
15 lines
202 B
C++
15 lines
202 B
C++
#ifndef BATTERY_UTILS_H_
|
|
#define BATTERY_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace BATTERY_Utils {
|
|
|
|
float checkBattery();
|
|
float checkExternalVoltage();
|
|
bool checkIfShouldSleep();
|
|
|
|
}
|
|
|
|
#endif |