diff --git a/Scripts/web_server.py b/Scripts/web_server.py index 52b10a0..a203763 100644 --- a/Scripts/web_server.py +++ b/Scripts/web_server.py @@ -270,10 +270,18 @@ class TempWebServer: if self._save_config_to_file(config): print("▶️ Schedule resumed - Automatic mode") - + if schedule_monitor: schedule_monitor.reload_config(config) + # ===== IMMEDIATELY APPLY ACTIVE SCHEDULE ===== + active_schedule = schedule_monitor._find_active_schedule() + if active_schedule: + schedule_monitor._apply_schedule(active_schedule) + print("✅ Active schedule applied immediately after resume: {}".format( + active_schedule.get('name', 'Unnamed') + )) + # Send Discord notification try: from scripts.discord_webhook import send_discord_message send_discord_message("▶️ Schedule resumed - Automatic temperature control active") diff --git a/main.py b/main.py index c49f8b4..64965fa 100644 --- a/main.py +++ b/main.py @@ -297,6 +297,24 @@ schedule_monitor = ScheduleMonitor( config=config, # Pass config with schedules interval=60 # Check schedule every 60 seconds ) + +# ===== APPLY ACTIVE SCHEDULE IMMEDIATELY ON STARTUP ===== +if config.get('schedule_enabled', False): + try: + # Find and apply the current active schedule + active_schedule = schedule_monitor._find_active_schedule() + if active_schedule: + schedule_monitor._apply_schedule(active_schedule) + print("✅ Active schedule applied on startup: {}".format( + active_schedule.get('name', 'Unnamed') + )) + else: + print("ℹ️ No active schedule found (using manual targets)") + except Exception as e: + print("⚠️ Warning: Could not apply startup schedule: {}".format(e)) +else: + print("ℹ️ Schedules disabled - using manual targets") +# ===== END: APPLY ACTIVE SCHEDULE ON STARTUP ===== # ===== END: Schedule Monitor Setup ===== # ===== START: Print Current Settings =====