#ifndef POWER_SWITCH_H #define POWER_SWITCH_H #include 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