Adjusted internal washer hysteresis to prevent false positives
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dreaded_X 2023-08-17 01:47:45 +02:00
parent cff9cb4bf6
commit 3134891751
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4

View File

@ -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 {