This commit is contained in:
Mateusz Gruszczyński
2026-09-04 11:00:15 +02:00
parent 8152e63d63
commit 236540e0f0
27 changed files with 557 additions and 102 deletions
+3 -3
View File
@@ -6,14 +6,14 @@ use crate::{
DeviceCommand, GroupControlPatch, HaReading, NightModeSettings, Reading, RuntimeSettings,
Schedule, TemporaryQuickThermostat, Zone, ZoneControlPlan, ZoneReading,
},
state::{AppState, PendingControllerCommand},
state::{AppState, ControlPlanSnapshot, PendingControllerCommand},
};
use anyhow::Result;
use chrono::{DateTime, Datelike, Local, NaiveTime, Timelike, Utc, Weekday};
use serde_json::{json, Value};
use std::{
collections::HashMap,
sync::atomic::Ordering,
collections::{HashMap, HashSet},
sync::{atomic::Ordering, Arc},
time::{Duration, Instant},
};
use tokio::time::sleep;