-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGNSS.py
222 lines (205 loc) · 7.02 KB
/
GNSS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
from machine import UART
import network, time
from machine import Pin
#from machine import Timer
import ujson
import urequests
from tftlcd import LCD32
from touch import XPT2046
import gui
RED = (255,0,0)
GREEN = (0,255,0)
BLUE = (0,0,255)
BLACK = (0,0,0)
WHITE = (255,255,255)
GREY = (178,180,181)
remainder = b''
Buffer = []
waitForDollar = True
plusTop = 284
plusLeft = 224
plusBottom = plusTop + 15
plusRight = plusLeft + 15
minusTop = 0
minusLeft = 224
minusBottom = minusTop + 15
minusRight = minusLeft + 15
d = LCD32(portrait=3)
time.sleep(1)
d.fill(GREY)
t = XPT2046(portrait=3)
lastLatitude = 0.0
lastLongitude = 0.0
zoom=12
My_API_Key = "xxxxxxxxx"
def displayTime(t):
global d
d.printStr('Time: '+t, 0, 304, BLUE, size=1)
def displayDate(t):
global d
d.printStr(t, 120, 304, BLUE, size=1)
def drawMap(lat, long):
url = 'https://www.mapquestapi.com/staticmap/v5/map?key=USEYOUROWNKEY¢er=xxLATxx,xxLONGxx&size=240,340&zoom=xxZOOMxx&size=@2x&locations=xxLATxx,xxLONGxx|marker-start'
url = url.replace('xxLONGxx', str(long), 2)
url = url.replace('xxLATxx', str(lat), 2)
url = url.replace('USEYOUROWNKEY', My_API_Key)
url = url.replace('xxZOOMxx', str(zoom))
re=urequests.get(url)
print("getMap: "+str(re.status_code))
if re.status_code == 200:
with open('image.jpg', 'wb') as fp:
fp.write(re.content)
fp.close()
d.Picture(0, 0, "/image.jpg")
re.close()
for y in range(300,320):
d.drawLine(0, y, 240, y, GREY)
def getMap(lat, p0, long, p1):
global My_API_Key, lastLatitude, lastLongitude
if p0==b'S':
lat = lat * -1
if p1==b'W':
long = long * -1
lastLatitude = lat
lastLongitude = long
drawMap(lat, long)
def parseDegrees(term):
value = float(term) / 100.0
left = int(value)
value = (value - left) * 1.66666666666666
value += left
return value
def parseZDA(result):
global lastLatitude, lastLongitude
if len(result)<7:
return
if result[1] != b'':
s=result[1][0:2]+b':'+result[1][2:4]+b':'+result[1][4:6]
print(b'UTC Time [ZDA]: '+s)
displayTime(s.decode())
s=result[4]+b'/'+result[3]+b'/'+result[2]
print(b'UTC Date [ZDA]: '+s)
displayDate(s.decode())
def parseGGA(result):
global lastLatitude, lastLongitude
if len(result)<15:
return
if result[1] != b'':
print(b'UTC Time [GGA]: '+result[1][0:2]+b':'+result[1][2:4]+b':'+result[1][4:6])
if result[2] != b'':
latitude = float('%.8f'%parseDegrees(result[2]))
longitude = float('%.8f'%parseDegrees(result[4]))
print("Coordinates: {} {}, {} {}".format(latitude, result[3].decode(), longitude, result[5].decode()))
if abs(latitude-lastLatitude)>0.01 or abs(longitude-lastLongitude)>0.01:
lastLatitude=latitude
lastLongitude=longitude
getMap(latitude, result[3], longitude, result[5])
def parseGLL(result):
global lastLatitude, lastLongitude
if len(result)<7:
return
if result[5] != b'':
print(b'UTC Time [GLL]: '+result[5][0:2]+b':'+result[5][2:4]+b':'+result[5][4:6])
if result[1] != b'':
latitude = float('%.8f'%parseDegrees(result[1]))
longitude = float('%.8f'%parseDegrees(result[3]))
print("Coordinates: {} {}, {} {}".format(latitude, result[2].decode(), longitude, result[4].decode()))
if abs(latitude-lastLatitude)>0.01 or abs(longitude-lastLongitude)>0.01:
lastLatitude=latitude
lastLongitude=longitude
getMap(latitude, result[2], longitude, result[4])
def parseRMC(result):
global lastLatitude, lastLongitude
if len(result)<11:
return
if result[1] != b'':
print(b'UTC Time [RMC]: '+result[5][0:2]+b':'+result[5][2:4]+b':'+result[5][4:6])
if result[2] == b'A':
latitude = float('%.8f'%parseDegrees(result[3]))
longitude = float('%.8f'%parseDegrees(result[5]))
print("Coordinates: {} {}, {} {}".format(latitude, result[4].decode(), longitude, result[6].decode()))
if abs(latitude-lastLatitude)>0.01 or abs(longitude-lastLongitude)>0.01:
lastLatitude=latitude
lastLongitude=longitude
getMap(latitude, result[4], longitude, result[6])
def parseGSV(result):
try:
if result[1] != b'':
print ("Message {} / {}. SIV: {}".format(result[2].decode(), result[1].decode(), result[3].decode()))
except:
print(b', '.join(result))
def WIFI_Connect():
with open('wifisecret.json') as fp:
data = ujson.loads(fp.read())
fp.close()
WIFI_LED=Pin(2, Pin.OUT) #初始化WIFI指示灯
wlan = network.WLAN(network.STA_IF) #STA模式
wlan.active(True) #激活接口
start_time=time.time() #记录时间做超时判断
if not wlan.isconnected():
print('connecting to network...')
wlan.connect(data['SSID'], data['pwd']) #输入WIFI账号密码
while not wlan.isconnected():
#LED闪烁提示
WIFI_LED.value(1)
time.sleep_ms(300)
WIFI_LED.value(0)
time.sleep_ms(300)
#超时判断, 15秒没连接成功判定为超时
if time.time()-start_time > 15 :
print('WIFI Connected Timeout!')
break
if wlan.isconnected():
#LED点亮
WIFI_LED.value(1)
#串口打印信息
print('network information:')
print(' IP: '+wlan.ifconfig()[0])
print(' Subnet: '+wlan.ifconfig()[1])
print(' GW: '+wlan.ifconfig()[2])
uart=UART(1, 9600, rx=9, tx=8)
print("Starting wifi...")
WIFI_Connect()
getMap(39.871962, b'N', 116.400928, b'E')
while True:
if uart.any():
#print("Incoming!")
text = remainder
while uart.any():
text = text + uart.read(64) #接收128个字符
remainder = b''
print(text)
if waitForDollar == True:
j=len(text)
for i in range(0, j-1):
if text[i] == 36:
print("Valid sentence starts at "+str(i))
waitForDollar = False
break
if waitForDollar == True:
print("Still no dollar!")
else:
text=text[i:].splitlines()
for x in text:
Buffer.append(x)
#remainder = Buffer.pop() # the last last may not be complete
waitForDollar = True
Buffer.reverse()
while len(Buffer)>0:
x = Buffer.pop()
chunks = x.split(b',')
verb = chunks[0]
if len(verb) == 6:
verb=verb[3:]
if verb == b'GGA':
parseGGA(chunks)
if verb == b'ZDA':
parseZDA(chunks)
elif verb == b'GLL':
parseGLL(chunks)
elif verb == b'GSV':
parseGSV(chunks)
elif verb == b'RMC':
parseRMC(chunks)
else:
print(x)