latest versions

This commit is contained in:
2026-02-12 12:26:39 -08:00
parent 82b5ed0b3c
commit 78cadee871
97 changed files with 3288 additions and 124 deletions

8
nmeastream/main.py Normal file
View File

@@ -0,0 +1,8 @@
from serial import Serial
from pynmeagps import NMEAReader
with Serial('/dev/tty.usbmodem314101', 9600, timeout=3) as stream:
nmr = NMEAReader(stream)
raw_data, parsed_data = nmr.read()
if parsed_data is not None:
print(parsed_data)