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
@@ -0,0 +1,13 @@
#pragma once
struct SensorData {
float fridgeZone1 = 36.0;
float fridgeZone2 = 12.0;
float rearSeat = 78.0;
float outsideAir = 88.0;
};
extern SensorData sensors;
void initSensors();
void updateSensors();