Nachdem wir Webots und die Python-Bibliothek bis zum letzten Mal installiert haben, führen wir den Python-Code aus.
from naoqi import ALProxy
motion = ALProxy("ALMotion", "127.0.0.1", 9559)
motion.setStiffnesses("Body", 1.0)
motion.moveInit()
motion.moveTo(0.5, 0, 0)
Wenn Sie motion.post.moveTO (0.5, 0, 0) anstelle von motion.moveTo (0.5, 0, 0) verwenden, können Sie es asynchron ausführen. das ist bequem.
Recommended Posts