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');