Add initial ESP32 controller firmware

This commit is contained in:
root
2026-06-03 01:04:11 -06:00
parent ac0112ca66
commit f9fe949bb9
7 changed files with 205 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
struct RelayState {
bool starlink = false;
bool fridge = true;
};
extern RelayState relays;
void initRelays();
void updateRelayOutputs();