From 37be80127051a7c300904f670ef21cad56e2c7c0 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Thu, 6 Nov 2025 18:01:26 -0500 Subject: [PATCH] fix: Update heater target temperatures in configuration for consistency --- config.json | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/config.json b/config.json index 4a092d8..d503ff2 100644 --- a/config.json +++ b/config.json @@ -1,33 +1,34 @@ { "ac_target": 77.0, "ac_swing": 1.0, - "heater_target": 80.0, + "heater_target": 72.0, "heater_swing": 2.0, "schedules": [ { "time": "06:00", "ac_target": 75.0, - "heater_target": 78.0, + "heater_target": 72.0, "name": "Morning" }, { "time": "12:00", - "ac_target": 77.0, - "heater_target": 80.0, + "ac_target": 75.0, + "heater_target": 72.0, "name": "Midday" }, { "time": "18:00", - "ac_target": 76.0, - "heater_target": 79.0, + "ac_target": 75.0, + "heater_target": 72.0, "name": "Evening" }, { "time": "22:00", - "ac_target": 74.0, - "heater_target": 77.0, + "ac_target": 75.0, + "heater_target": 72.0, "name": "Night" } ], - "schedule_enabled": true + "schedule_enabled": true, + "permanent_hold": false } \ No newline at end of file