From 830a066fe45502d7bae4179dd172fc457fcd7f54 Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Thu, 29 Aug 2024 22:30:30 +0200 Subject: [PATCH] Prune all time series --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5681dfb..ebc9d96 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -404,6 +404,8 @@ void loop(void) Serial.println("Display updated."); timeseries_prune(&ts_scd30_humidity, 3600); // keep the last hour + timeseries_prune(&ts_scd30_temperature, 3600); // keep the last hour + timeseries_prune(&ts_scd30_co2, 3600); // keep the last hour } delay(1000);