analyse_serial_gps_info add python
This commit is contained in:
parent
80abce0756
commit
c22b06f158
17
analyse_serial_gps_info/v.py
Normal file
17
analyse_serial_gps_info/v.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
def match(s):
|
||||||
|
return s.find('qxwz_response') > -1
|
||||||
|
|
||||||
|
def sub(s):
|
||||||
|
pos = s.find('$')
|
||||||
|
if pos < 0:
|
||||||
|
return ''
|
||||||
|
return s[pos + 1:]
|
||||||
|
|
||||||
|
def split(s):
|
||||||
|
return list(s.strip().split(','))
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
for line in open('1fps.txt'):
|
||||||
|
if match(line):
|
||||||
|
print(split(sub(line)))
|
Loading…
x
Reference in New Issue
Block a user