added gui

This commit is contained in:
2026-05-24 11:52:03 +02:00
parent 74b949f864
commit 561d4ad77f
10 changed files with 1592 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import sys, os
_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # nmea_client/
_gui = os.path.dirname(os.path.abspath(__file__)) # nmea_client/gui/
for _p in [_root, _gui]:
if _p not in sys.path:
sys.path.insert(0, _p)