-
Notifications
You must be signed in to change notification settings - Fork 15
/
otto_remote.py
429 lines (369 loc) · 13.4 KB
/
otto_remote.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import otto9
import mouths
import binascii
import hashlib
from micropython import const
import socket
import sys
import network
#import websocket_helper
import websocket
import ujson
try:
from esp32 import RFCOMM
except ImportError:
hasRfcomm = False
# print("This version of micropython esp32 doesn't support RFCOMM")
# raise ImportError
from machine import Timer
import utime
# we may need this
DEBUG = 0
class ottoRemote(otto9.Otto9):
def __init__(self, name="Otto", prgId="Otto_V9", webPort=8181):
super().__init__()
self.timer = Timer(0)
self.pending = False
self.cmdList = []
self.savedCmd = None
self.name = name
self.rfComm = None
if hasRfcomm:
self.rfComm = RFCOMM(device=self.name, server="ESP32")
self.rfComm.callback(RFCOMM.CBTYPE_PATTERN, self.rfRemoteCommand, pattern='\r')
self.cmdDebug = False
self.printCmd = False
self.moveDebug = False
self.prgId = prgId
self.listenSock = None
self.clientSock = None
self.webSock = None
self.webPort = webPort
self.ottoMoves = [
super().home,
(super().walk, 1, 1),
(super().walk, 1, -1),
(super().turn, 1, 1),
(super().turn, 1, -1),
(super().updown, 1, 0),
(super().moonwalker, 1, 0, 1),
(super().moonwalker, 1, 0, -1),
(super().swing, 1, 0),
(super().crusaito, 1, 0, 1),
(super().crusaito, 1, 0, -1),
(super().jump, 1),
(super().flapping, 1, 0, 1),
(super().flapping, 1, 0, -1),
(super().tiptoeSwing, 1, 0),
(super().bend, 1, 1),
(super().bend, 1, -1),
(super().shakeLeg, 1, 1),
(super().shakeLeg, 1, -1),
(super().jitter, 1, 0),
(super().ascendingTurn, 1, 0),
super().handsup,
(super().handwave, 1, -2),
(super().handwave, -1, -2)
]
self.setupConn()
def deinit(self):
if self.rfComm:
# we need to deinit rfComm
self.rfComm.deinit()
super().deinit()
def cmdProc(self, _):
self.pending = False
if len(self.cmdList) > 0:
# make otto move
cmd = self.cmdList.pop(0)
elif self.savedCmd is not None:
cmd = self.savedCmd
else:
return
# make sure command is in dict
if 'command' in cmd:
command = cmd['command']
else:
return
self.savedCmd = None
if command[0] == 'M':
self.sendAck(cmd)
# 'M' is for move
moveIndex = int(command[1])
if len(command) > 2:
moveTime = int(command[2])
else:
moveTime = 1000
if len(command) > 3:
moveSize = int(command[3])
else:
moveSize = 15
if self.moveDebug:
print("index = " + str(moveIndex) + " T = " + str(moveTime) + " moveSize = " + str(moveSize))
if len(self.ottoMoves) > moveIndex:
# this should use the otto.getRestState()
if moveIndex != 0:
self.savedCmd = cmd
# get the actual move
actualMove = self.ottoMoves[moveIndex]
if isinstance(actualMove, tuple):
# get the specific move
ottoMove = actualMove[0]
if len(actualMove) == 2:
self.cmdPrint(ottoMove.__name__ + "(" + str(actualMove[1]) + ", " + str(moveTime) + ")")
ottoMove(actualMove[1], moveTime)
elif len(actualMove) == 3:
if actualMove[2] == 0:
self.cmdPrint(ottoMove.__name__ + "(" + str(actualMove[1]) + ", " +
str(moveTime) + ", " + str(moveSize) + ")")
ottoMove(actualMove[1], moveTime, moveSize)
elif actualMove[2] >= -1:
self.cmdPrint(ottoMove.__name__ + "(" + str(actualMove[1]) + ", " +
str(moveTime) + ", " + str(actualMove[2]) + ")")
ottoMove(actualMove[1], moveTime, actualMove[2])
elif actualMove[2] < -1:
self.cmdPrint(ottoMove.__name__ + "(" + str(actualMove[1]) + ")")
ottoMove(actualMove[1])
else:
self.savedCmd = None
elif len(actualMove) == 4:
self.cmdPrint(ottoMove.__name__ + "(" + str(actualMove[1]) + ", " + str(moveTime) +
", " + str(moveSize) + ", " + str(actualMove[3]) + ")")
ottoMove(actualMove[1], moveTime, moveSize, actualMove[3])
else:
self.savedCmd = None
else:
ottoMove = actualMove
self.cmdPrint(ottoMove.__name__ + "()")
ottoMove()
self.sendFinalAck(cmd)
elif command[0] == 'B':
# 'B' is for request battery
self.cmdPrint("Otto request battery")
batteryLevel = super().getBatteryLevel()
self.sendResp(cmd, str(batteryLevel))
elif command[0] == 'D':
# 'D' is for request distance
self.cmdPrint("Otto request distance")
distance = super().getDistance()
self.sendResp(cmd, str(distance))
elif command[0] == 'H':
self.sendAck(cmd)
# 'H' is for gesture
gesture = int(command[1]) - 1
self.cmdPrint("Otto gesture=" + str(gesture))
super().playGesture(gesture)
self.sendFinalAck(cmd)
elif command[0] == 'I':
# 'I' is for request program ID
print("Otto request program ID")
self.sendResp(cmd, self.prgId)
elif command[0] == 'K':
self.sendAck(cmd)
# 'K' is for sing
song = int(command[1]) - 1
self.cmdPrint("Otto sing=" + str(song))
super().sing(song)
self.sendFinalAck(cmd)
elif command[0] == 'L':
self.sendAck(cmd)
# 'L' is for mouth
mouth = int(command[1], 2)
self.cmdPrint("Otto mouth=" + hex(mouth))
super().putMouth(mouth, False)
self.sendFinalAck(cmd)
elif command[0] == 'N':
# 'N' is for request noise
print("Otto request noise")
noise = super().getNoise()
self.sendResp(cmd, str(noise))
elif command[0] == 'T':
self.sendAck(cmd)
# 'T' is for buzzer
if len(command) < 3:
# this is an error
super().putMouth(mouths.XMOUTH)
utime.sleep_ms(2000)
super().clearMouth()
else:
self.cmdPrint("Otto buzzer freq=" + command[1] + " time=" + command[2])
super()._tone(int(command[1]), int(command[2]), 1)
self.sendFinalAck(cmd)
else:
self.sendAck(cmd)
super().home()
self.sendFinalAck(cmd)
# schedule again if the savedCmd is valid
if self.savedCmd is not None:
self.pending = True
self.timer.init(period=100, mode=Timer.ONE_SHOT, callback=self.cmdProc)
def addCmd(self, cmd):
self.cmdList.append(cmd)
if not self.pending:
self.cmdProc(self.timer)
def sendAck(self, cmd):
utime.sleep_ms(30)
if cmd['src'] == 'RFCOMM' and self.rfComm:
if self.rfComm.connected()[cmd['ch']] != 0:
self.rfComm.write(cmd['ch'], "&&A%%\r")
elif cmd['src'] == 'WS':
response = {
'type': 'ottoAck',
'command': cmd['command'][0]
}
cmd['sock'].write(ujson.dumps(response) + '\n')
def sendFinalAck(self, cmd):
utime.sleep_ms(30)
if cmd['src'] == 'RFCOMM' and self.rfComm:
if self.rfComm.connected()[cmd['ch']] != 0:
self.rfComm.write(cmd['ch'], "&&F%%\r")
elif cmd['src'] == 'WS':
response = {
'type': 'ottoFinalAck',
'command': cmd['command'][0]
}
cmd['sock'].write(ujson.dumps(response) + '\n')
def sendResp(self, cmd, result):
if cmd['src'] == 'RFCOMM' and self.rfComm:
if self.rfComm.connected()[cmd['ch']] != 0:
self.rfComm.write(cmd['ch'], '&&' + cmd['command'][0] + ' ' + result + '%%\r')
elif cmd['src'] == 'WS':
response = {
'type': 'ottoResponse',
'command': cmd['command'][0],
'result': result
}
cmd['sock'].write(ujson.dumps(response) + '\n')
def rfRemoteCommand(self, ev):
cmd = {
'src': 'RFCOMM',
'ch': ev[0],
'command': ev[2].decode().split()
}
if self.cmdDebug:
print(cmd)
self.addCmd(cmd)
def cmdDbg(self, yesNo):
self.cmdDebug = yesNo
def moveDbg(self, yesNo):
self.moveDebug = yesNo
def cmdPrt(self, yesNo):
self.printCmd = yesNo
def cmdPrint(self, cmdStr):
if self.printCmd:
print(cmdStr)
def wsRemoteCommand(self, clientSock):
if clientSock == self.clientSock:
try:
strg = self.webSock.readline()
except:
# close the socket
strg = ""
if len(strg) == 0:
# the connection is gone
self.webSock.close()
self.clientSock.close()
self.webSock = None
self.clientSock = None
return
try:
cmd = ujson.loads(strg)
cmd['src'] = "WS"
cmd['sock'] = self.webSock
if self.cmdDebug:
print(cmd)
self.addCmd(cmd)
except:
pass
def server_handshake(self):
req = self.clientSock.makefile("rwb", 0)
# Skip HTTP GET line.
l = req.readline()
if DEBUG:
sys.stdout.write(repr(l))
webkey = None
upgrade = False
websocket = False
while True:
l = req.readline()
if not l:
# EOF in headers.
return False
if l == b"\r\n":
break
if DEBUG:
sys.stdout.write(l)
h, v = [x.strip() for x in l.split(b":", 1)]
if DEBUG:
print((h, v))
if h == b"Sec-WebSocket-Key":
webkey = v
elif h == b"Connection" and b"Upgrade" in v:
upgrade = True
elif h == b"Upgrade" and v == b"websocket":
websocket = True
if not (upgrade and websocket and webkey):
return False
if DEBUG:
print("Sec-WebSocket-Key:", webkey, len(webkey))
d = hashlib.sha1(webkey)
d.update(b"258EAFA5-E914-47DA-95CA-C5AB0DC85B11")
respkey = d.digest()
respkey = binascii.b2a_base64(respkey)[:-1]
if DEBUG:
print("respkey:", respkey)
self.clientSock.send(
b"""\
HTTP/1.1 101 Switching Protocols\r
Upgrade: websocket\r
Connection: Upgrade\r
Sec-WebSocket-Accept: """
)
self.clientSock.send(respkey)
self.clientSock.send("\r\n\r\n")
return True
def send_html(self):
self.clientSock.send(
b"""\
HTTP/1.0 400 Bad Request\r
\r
"""
)
self.clientSock.close()
self.clientSock = None
def acceptConn(self, listenSock):
if self.listenSock != listenSock:
self.listenSock = listenSock
cl, remote_addr = self.listenSock.accept()
print("\nOtto WS connection from:", remote_addr)
if self.clientSock is not None:
try:
if self.webSock is not None:
self.webSock.close()
self.clientSock.close()
except:
pass
self.webSock = None
self.clientSock = None
self.clientSock = cl
if not self.server_handshake():
self.send_html()
return False
self.webSock = websocket.websocket(self.clientSock, True)
self.clientSock.setblocking(False)
self.clientSock.setsockopt(socket.SOL_SOCKET, 20, self.wsRemoteCommand)
def setupConn(self):
if self.listenSock is not None:
self.listenSock.close()
self.listenSock = None
self.listenSock = socket.socket()
self.listenSock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
ai = socket.getaddrinfo("0.0.0.0", self.webPort)
addr = ai[0][4]
self.listenSock.bind(addr)
self.listenSock.listen(1)
self.listenSock.setsockopt(socket.SOL_SOCKET, 20, self.acceptConn)
for i in (network.AP_IF, network.STA_IF):
iface = network.WLAN(i)
if iface.active():
print("Otto WS daemon started on ws://%s:%d" % (iface.ifconfig()[0], self.webPort))