From 3134891751764608a0621cd9054ab916f9eed071 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Thu, 17 Aug 2023 01:47:45 +0200 Subject: [PATCH] Adjusted internal washer hysteresis to prevent false positives --- src/devices/washer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/washer.rs b/src/devices/washer.rs index cbaf1a4..a4ec235 100644 --- a/src/devices/washer.rs +++ b/src/devices/washer.rs @@ -60,7 +60,7 @@ impl Device for Washer { // The washer needs to have a power draw above the theshold multiple times before the washer is // actually marked as running // This helps prevent false positives -const HYSTERESIS: isize = 3; +const HYSTERESIS: isize = 10; #[async_trait] impl OnMqtt for Washer {