Browse Source

fix serial cmd

main
Hendrik Langer 4 years ago
parent
commit
365302e2cd
  1. 6
      raspberry/roberto/Serial.py

6
raspberry/roberto/Serial.py

@ -49,12 +49,12 @@ class Serial(object):
if data:
print(data)
command = data[0]
argument = data[2:]
if command in data:
argument = data[2:].strip()
if isalnum(command) and command in self._callbacks:
cb = self._callbacks[command]
if cb:
cb(argument)
except serial.SerialException:
pass
#self.alive = False

Loading…
Cancel
Save