Changed detection overtime from 10 seconds to 5 seconds

This commit is contained in:
Bastian Kohler 2023-06-23 16:27:22 +02:00
parent 0c808f1daa
commit 681a2f0230

View File

@ -12,7 +12,7 @@ abstract public class Detector {
private boolean extendViolation = false; private boolean extendViolation = false;
// Countdown parameters // Countdown parameters
private final int COUNTDOWN_TIME = 10000; // milliseconds private final int COUNTDOWN_TIME = 5000; // milliseconds
private final int COUNTDOWN_POLLING_TIME = 100; // milliseconds private final int COUNTDOWN_POLLING_TIME = 100; // milliseconds
/** Constructor - takes context of current activity */ /** Constructor - takes context of current activity */