From 2c0776bdaa1243fe08c8ff4a4cecee16c80220b8 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Tue, 18 Aug 2026 13:19:02 +0200 Subject: [PATCH] Logs the read GPS line --- orchestrateur/sensors/gps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/orchestrateur/sensors/gps.py b/orchestrateur/sensors/gps.py index a6c97ed..d6f58ce 100644 --- a/orchestrateur/sensors/gps.py +++ b/orchestrateur/sensors/gps.py @@ -44,6 +44,7 @@ class GROVEGPS: raw_bytes = self.ser.readline() try: line = raw_bytes.decode('utf-8', errors='ignore').strip() + log(f"GPS: Read line: {line}") except Exception: continue