12 lines
162 B
C
12 lines
162 B
C
#pragma once
|
|
|
|
struct RelayState {
|
|
bool starlink = false;
|
|
bool fridge = true;
|
|
};
|
|
|
|
extern RelayState relays;
|
|
|
|
void initRelays();
|
|
void updateRelayOutputs();
|