Skip to content

Specify robot resume task

Method

resumeTaskToRobot(robotId) -> {Promise.<boolean>}

SDK does not require a robot connection, and this method can achieve recovery tasks for a specified robot

Parameters

Fields Type Description
robotId string robotId

Return Value Promise.<boolean>

success

  • true - success
  • false - failed

Example

JavaScript
1
2
3
...
const success = await axRobot.resumeTaskToRobot(robotId;
...