From a4fd4acaa3e68f6606bf04758b96096800b2b1e4 Mon Sep 17 00:00:00 2001 From: Empire Phoenix Date: Wed, 5 Mar 2025 23:03:24 +0100 Subject: [PATCH] fix low sensor value --- rust/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/main.rs b/rust/src/main.rs index 4bb183f..3dfa581 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -40,7 +40,7 @@ pub mod plant_hal; const TIME_ZONE: Tz = Berlin; const MOIST_SENSOR_MAX_FREQUENCY: u32 = 250000; // 60kHz (500Hz margin) -const MOIST_SENSOR_MIN_FREQUENCY: u32 = 10000; // 0.5kHz (500Hz margin) +const MOIST_SENSOR_MIN_FREQUENCY: u32 = 300; // this is really really dry, think like cactus levels const FROM: (f32, f32) = ( MOIST_SENSOR_MIN_FREQUENCY as f32,