Skip to content

双步运动

motionControl(linearVelocity, angularVelocity) -> {void}

控制机器人移动

参数

名称 数据类型 说明
linearVelocity number 移动线速度
angularVelocity number 移动角速度

返回值

示例

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