We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_read(.., size)
1 parent ec708f3 commit ae3a264Copy full SHA for ae3a264
pymycobot/mycobot.py
@@ -37,7 +37,7 @@ def _write(self, command):
37
self._serial_port.flush()
38
time.sleep(0.05)
39
40
- def _read(self, size=1024):
+ def _read(self):
41
if self._serial_port.inWaiting() > 0:
42
data = self._serial_port.read(self._serial_port.inWaiting())
43
self.log.debug("_read: {}".format(data))
0 commit comments