-
Notifications
You must be signed in to change notification settings - Fork 26
/
wifiradio.py
executable file
·99 lines (83 loc) · 2.62 KB
/
wifiradio.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
# WiFiradio.py -- get radio buttons
import pyb
import struct
class WiFiRadio:
def __init__(self, uart_id):
self.uart = pyb.UART(uart_id, 115200)
self.uart.init(115200,bits=8,parity=None,stop=1,read_buf_len=2048)
self.nt = {"/1/turn":0,
"/1/speed":1,
"/2/left":0,
"/2/right":0,
"/2/forward":1,
"/2/reverse":1
}
self._state = [0.0, 0.0]
s = self._read_prologue()
self._ip = self._extract_ipaddr(s)
self._period = 0
def getipaddr(self):
return self._ip
def _extract_ipaddr(self,s):
if len(s)<20: #missed initial output containing ip address?
return ''
si = s.find('192')
if si<0:
return ''
ei = s[si:].find('\n')
if si<0:
return ''
return s[si:ei+si]
def _read_prologue(self):
s = ''
ch = self.uart.readchar()
if (ch<0):
return s
while chr(ch)!='#':
s = s + chr(ch)
ch = self.uart.readchar()
if(ch<0):
return s
return s
def guardband(self, val):
if val<0.05 and val > -0.05:
return 0.0
else:
return val
def update(self, name,val):
try:
id = self.nt[name]
self._state[id] = self.guardband(val)
except KeyError:
pass
# process incoming messages from esp8266 and update state
# message format is <#> <size> <simple OSC message> </n>
def poll(self):
self._period = (self._period+1) % 4
if self._period == 0:
return self._state
start = False
while self.uart.any() and not start:
ch = self.uart.readchar()
start = (chr(ch) == '#') # start of message
if not start:
return self._state
nb = self.uart.readchar() # size of message
name =''
ch = self.uart.readchar()
while ch!=0:
name += chr(ch)
ch = self.uart.readchar()
if len(name)<=4:
return self._state
while ch==0:
ch = self.uart.readchar()
for j in range(3):
ch = self.uart.readchar() # skip format string
buf = bytearray(4)
for j in range(4):
buf[j] = self.uart.readchar()
fval = struct.unpack('>f',buf)
self.update(name, fval[0])
ch = self.uart.readchar() # read terminating linefeed
return self._state