From 681a2f0230c6277c4ab6eb42f51080e65adb1117 Mon Sep 17 00:00:00 2001 From: Bastian Kohler Date: Fri, 23 Jun 2023 16:27:22 +0200 Subject: [PATCH] Changed detection overtime from 10 seconds to 5 seconds --- .../com/example/ueberwachungssystem/Detection/Detector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/example/ueberwachungssystem/Detection/Detector.java b/app/src/main/java/com/example/ueberwachungssystem/Detection/Detector.java index 826878b..c8ad62c 100644 --- a/app/src/main/java/com/example/ueberwachungssystem/Detection/Detector.java +++ b/app/src/main/java/com/example/ueberwachungssystem/Detection/Detector.java @@ -12,7 +12,7 @@ abstract public class Detector { private boolean extendViolation = false; // Countdown parameters - private final int COUNTDOWN_TIME = 10000; // milliseconds + private final int COUNTDOWN_TIME = 5000; // milliseconds private final int COUNTDOWN_POLLING_TIME = 100; // milliseconds /** Constructor - takes context of current activity */