From 1c6045549837706179235f20830e5a9e2ef1e0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Sat, 28 Jun 2025 08:44:32 +0200 Subject: [PATCH] qr timeout 5 --- Fotobox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fotobox.py b/Fotobox.py index 95370b8..5b9bed8 100644 --- a/Fotobox.py +++ b/Fotobox.py @@ -114,7 +114,7 @@ class Fotobox: self._choice: Photo | None = None self._countdown_timer: Timer = Timer("countdown", 0, 1, COUNTDOWN_COUNT + 1, self._countdown_callback) self._shooting_timer: Timer = Timer("shooting", 0, SHOOTING_INTERVAL, SHOOTING_COUNT, self._shooting_callback) - self._qr_timer: Timer = Timer("qr", 0, QR_TIMEOUT, 1, self._qr_callback) + self._qr_timer: Timer = Timer("qr", QR_TIMEOUT, QR_TIMEOUT, 1, self._qr_callback) self._fotobox_uuid = read("./data/fotobox.uuid") print("Starting fotobox: F-%s" % self._fotobox_uuid)