Open
Description
With the asyncio code I can properly set the port the Pi should use to communicate with the RVR (my Pi is set up as a USB Serial Gadget).
rvr = SpheroRvrAsync(
dal=SerialAsyncDal(
loop,
port_id = "/dev/ttyGS0"
)
)
SpheroRvrObserver, however, does not accept a dal
parameter and so changing the port is not possible. Could this be added as an option?