As of September 2021, we have moved technical support to Robolink Help
Welcome to the Robolink Community forum!
You can post here to interact with others in the Robolink community. We're checking it weekly, and we'll respond to some messages. If you're looking for technical support, head over to Robolink Help.
Zumi doesn't stop
-
I have 2 teams programming a Zumi and it doesn't respond to the stop command in Python.
They are working in the Jupyter IDE.
-
You can also check out the FAQ https://learn.robolink.com/docs/zumi-faq/wont-stop-driving
-
@shibbyrae The best way to stop Zumi is to run the following code in a cell:
from zumi.zumi import Zumi zumi = Zumi() zumi.stop()
The "stop" button on the Jupyter toolbar will not stop Zumi on its own. Zumi needs to explicitly receive the zumi.stop() command. Let me know if this helps!