From d3a05c836e938a30bb15cabf153bcc64a3fa6501 Mon Sep 17 00:00:00 2001 From: theawes0megamer Date: Sun, 28 Apr 2024 15:55:58 -0600 Subject: [PATCH] change start time vars --- main_gpsd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_gpsd.py b/main_gpsd.py index 5ee633b..abe0337 100644 --- a/main_gpsd.py +++ b/main_gpsd.py @@ -62,7 +62,7 @@ def update_mph(): def start_timer(): # Start the 0-60 MPH timer global start_time - if mph > 2 and mph < 3 and not start_time: + if mph > 2 and mph < 4 and not start_time: start_time = time.time() update_timer()