Browse Source

Changed detection overtime from 10 seconds to 5 seconds

master
Bastian Kohler 11 months ago
parent
commit
681a2f0230

+ 1
- 1
app/src/main/java/com/example/ueberwachungssystem/Detection/Detector.java View File

@@ -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 */

Loading…
Cancel
Save