fix config always assumed changed

This commit is contained in:
2025-05-07 00:48:06 +02:00
parent bfc3fbc6e1
commit 171b130a29
4 changed files with 52 additions and 44 deletions

View File

@@ -79,10 +79,11 @@ interface PlantConfig {
pump_cooldown_min: number,
pump_hour_start: number,
pump_hour_end: number,
sensor_a: boolean,
sensor_b: boolean,
max_consecutive_pump_count: number,
moisture_sensor_min_frequency?: number;
moisture_sensor_max_frequency?: number;
moisture_sensor_min_frequency: number | null;
moisture_sensor_max_frequency: number | null;
}