LoRa_APRS_iGate/include/sleep_utils.h

15 lines
204 B
C
Raw Normal View History

2025-04-24 15:44:57 +02:00
#ifndef SLEEP_UTILS_H_
#define SLEEP_UTILS_H_
#include <Arduino.h>
namespace SLEEP_Utils {
2025-04-24 16:36:08 +02:00
void setup();
void checkWakeUpFlag();
void startSleeping();
2025-05-08 18:53:55 +02:00
void checkSerial();
2025-04-24 15:44:57 +02:00
}
#endif