From 139f2f642750ddb39ff1c057ebf4b099eecb1e3b Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Mon, 6 May 2024 23:13:53 +0200 Subject: [PATCH] Improved warning patterns --- src/endpoints/handlers/bett.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/endpoints/handlers/bett.py b/src/endpoints/handlers/bett.py index a383cea..fd17b43 100644 --- a/src/endpoints/handlers/bett.py +++ b/src/endpoints/handlers/bett.py @@ -24,8 +24,8 @@ average_person_weight: float = 75 is_warning_active: int = -1 leg_capacity_limit_patterns = [ - {"limit": 80, "pattern": 110, "duration": 1000}, - {"limit": 90, "pattern": 110, "duration": 250}, + {"limit": 80, "pattern": 110, "duration": 250}, + {"limit": 90, "pattern": 110, "duration": 100}, {"limit": 100, "pattern": 10, "duration": 50}, ]