Advertisement
orborbson

gps.py

Jun 22nd, 2024
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.75 KB | Source Code | 0 0
  1. from machine import Pin, UART
  2. import time
  3. uart1= UART(1, baudrate=9600, bits=8, parity=None, stop=1, tx=Pin(16), rx=Pin(17), timeout=300)
  4.  
  5. gps = []
  6.  
  7. while True:
  8.     dane = uart1.readline()
  9.     try:
  10.         if dane:
  11.             gps = dane.decode("utf8").split(",")
  12.     except UnicodeError:
  13.         pass
  14.     except KeyboardInterrupt:
  15.         break
  16.     else:
  17.         # print(gps)
  18.         if gps and gps[0] == "$GNGGA":
  19.             print("=== %.2i:%.2i:%.2i\t%.6f%s, %.6f%s ===" % ( (int(gps[1][0:2]) + 2) % 24, int(gps[1][2:4]), int(gps[1][4:6]),
  20.                                          float(gps[2][0:2]) + float(gps[2][2:])/60.0, gps[3],
  21.                                                        float(gps[4][0:3]) + float(gps[4][3:])/60.0, gps[5] ))
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement