增加外接语音识别库

This commit is contained in:
dahanzimin
2024-11-27 11:39:58 +08:00
parent fca27cd589
commit 2ecdbafacc
3 changed files with 96 additions and 0 deletions

View File

@@ -80,3 +80,12 @@ class NMEA0183:
self.status[0]= False if 'V' in data[2] else True
self.status[1]= data[12]
return flag_rmc | flag_gga
def time(self):
return tuple(self.time)
def locate(self):
return tuple(self.locate)
def status(self):
return tuple(self.status)