LoRa_APRS_iGate/lib/PowerManagement/power_management.h

26 wiersze
367 B
C
Czysty Zwykły widok Historia

2021-01-01 22:23:27 +00:00
#ifndef POWER_MANAGEMENT_H_
#define POWER_MANAGEMENT_H_
#include <Arduino.h>
#include <axp20x.h>
class PowerManagement {
2021-01-01 22:23:27 +00:00
public:
PowerManagement();
bool begin(TwoWire &port);
2021-01-01 22:23:27 +00:00
void activateLoRa();
void deactivateLoRa();
2021-01-01 22:23:27 +00:00
void activateGPS();
void deactivateGPS();
2021-01-01 22:23:27 +00:00
void activateOLED();
void decativateOLED();
2021-01-01 22:23:27 +00:00
private:
AXP20X_Class axp;
2021-01-01 22:23:27 +00:00
};
#endif