Learn how to configure Almond Bot
await client.set_mode(Mode.AUTONOMOUS)
await client.set_mode(Mode.DRAG)
await client.set_mode(Mode.TELEOPERATION)
# Set the speed to 20% of the maximum speed await client.set_speed(speed=0.2)
# Set the acceleration to 60% of the maximum acceleration await client.set_acceleration(acceleration=0.6)
# Set the collision sensitivity to 50% of the maximum await client.set_collision_sensitivity(sensitivity=0.5)