From 78996ea0156f4e77478dd5ebd9635065ebc92841 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 14 Dec 2025 07:39:49 -0500 Subject: [PATCH] Update gps_client.py add mode --- gps_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gps_client.py b/gps_client.py index a417cdce..01f4820f 100644 --- a/gps_client.py +++ b/gps_client.py @@ -59,5 +59,5 @@ except KeyboardInterrupt: # Got ^C, or fell out of the loop. Cleanup, and leave. session.close() -print("%.6f %.6f %.1f" % (lat, lon, alt)) +print("%d %.6f %.6f %.1f" % (mode, lat, lon, alt)) exit(0)