From 7e36ad5ce04d76f1b90c96f7727458d5adc27dcb Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 24 Jun 2026 09:37:17 -0400 Subject: [PATCH] - Calibrate temperature - Removed radar timeline --- client/src/components/MapView.vue | 1 - sensors/main.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/components/MapView.vue b/client/src/components/MapView.vue index 218e9fc..62a1a00 100644 --- a/client/src/components/MapView.vue +++ b/client/src/components/MapView.vue @@ -418,7 +418,6 @@ input[type='range'] { /> - diff --git a/sensors/main.py b/sensors/main.py index 043f2b0..72fd14f 100644 --- a/sensors/main.py +++ b/sensors/main.py @@ -178,7 +178,7 @@ def read_bme(c, sensor, alt_m=None): p_rate, p_label = get_pressure_trend(c['PRESSURE_TREND_WINDOW']) dp = round(t - (100-rh)/5.0, 2) write(c, 'environment', { - 'temperature': round(t - c['TEMP_CALIBRATION'], 2), + 'temperature': round(t - c[''], 2), 'humidity': round(rh, 2), 'dew_point': dp, 'pressure_hpa': round(p, 2),