From 1b2c0b51c4f47f9885133eb9e3acc4373daf6f6e Mon Sep 17 00:00:00 2001 From: James Date: Sat, 14 Feb 2026 04:30:24 -0500 Subject: [PATCH] Production intervals: weather 60s, sensors 30s --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 50cae11..0414f27 100644 --- a/index.html +++ b/index.html @@ -377,7 +377,7 @@ async function updateWeather() { } catch(e) {} } updateWeather(); -setInterval(updateWeather, 86400000); // once per day +setInterval(updateWeather, 60000); // every minute // === ROOM SENSORS (7pm - 8am only) === const sensorEl = document.getElementById('room-sensors'); @@ -413,7 +413,7 @@ async function updateSensors() { } updateSensors(); -setInterval(updateSensors, 5000); +setInterval(updateSensors, 30000); // === PULSE-OX CAMERA (7pm - 8am only) === const camImg = document.getElementById('pulse-cam');