Procházet zdrojové kódy

Merge branch 'master' of ssh://git.black-mesa.xyz:434/langspielplatte/measurement-scripts

master
Lukas Prause před 3 roky
rodič
revize
d5ed4efca8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      measurement_main.py

+ 1
- 1
measurement_main.py Zobrazit soubor

@@ -251,7 +251,7 @@ def monitor_gps(ser, output_file):
while ser.is_open:
nmea_sentence = ser.readline() #GPRMC
nmea_str = nmea_sentence.decode("utf-8")
if nmea_str.startswith("$GPGGA"):
if nmea_str.startswith("$GPRMC"):
write_to_file(output_file, nmea_str)
except:
if not ser.is_open:

Načítá se…
Zrušit
Uložit