LNSC-2420-Firmware/src/power_switch.h

17 lines
338 B
C

#ifndef POWER_SWITCH_H
#define POWER_SWITCH_H
#include <stdbool.h>
void power_switch_init(void);
void power_switch_solar_on(void);
void power_switch_solar_off(void);
bool power_switch_solar_status(void);
void power_switch_load_on(void);
void power_switch_load_off(void);
bool power_switch_load_status(void);
#endif // POWER_SWITCH_H