mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-30 20:34:16 +01:00
18 lines
262 B
C++
18 lines
262 B
C++
#ifndef POWER_UTILS_H_
|
|
#define POWER_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
#include "XPowersLib.h"
|
|
|
|
|
|
namespace POWER_Utils {
|
|
|
|
void activateMeasurement();
|
|
void activateLoRa();
|
|
void deactivateLoRa();
|
|
bool begin(TwoWire &port);
|
|
void setup();
|
|
|
|
}
|
|
|
|
#endif |