def stop(motion): motion.stopMove()
def tourner_a_droite(motion, freq): motion.stopMove() x = 0.0 y = 0.0 theta = -1.0 motion.setWalkTargetVelocity(x, y, theta, freq)
def marche_arriere(motion, posture, freq): motion.stopMove() x = -1.0 y = 0.0 theta = 0.0 motion.setWalkTargetVelocity(x, y, theta, freq)
def tout_droit(motion, posture, freq): motion.stopMove() x = 1.0 y = 0.0 theta = 0.0 motion.setWalkTargetVelocity(x, y, theta, freq)
def decal_gauche(motion, posture, freq): motion.stopMove() x = 0.0 y = 1.0 theta = 0.0 motion.setWalkTargetVelocity(x, y, theta, freq)