Update ACMonitor target temperature to 77.0 for improved climate control

This commit is contained in:
Aaron 2025-11-05 15:03:11 -05:00
parent 8f33a4ec8d
commit 41760411a9

View File

@ -28,7 +28,7 @@ ac_controller = ACController(
ac_monitor = ACMonitor(
ac_controller=ac_controller,
temp_sensor=sensors['inside'], # <-- This is your inside temperature sensor
target_temp=75.0,
target_temp=77.0,
temp_swing=1.0,
interval=30
)