Files
overland-controller/firmware/esp32/overland-controller/relays.h
T

13 lines
174 B
C

#pragma once
#include "app_config.h"
struct RelayState {
bool state[MAX_RELAYS] = {false};
};
extern RelayState relays;
void initRelays();
void updateRelayOutputs();