Skip to content

Complex Motion

motionControl(linearVelocity, angularVelocity) -> {void}

control robot movement

Parameters

Name Data Type Description
linearVelocity number moving linear velocity
angularVelocity number angular velocity of movement

Return Value

none

Example

JavaScript
1
2
3
...
axRobot.motionControl(0.1, 0.2);
...