有人可以澄清如何使用DroneProxy API类制作无人机吗? 我正在使用AR.Drone 2.0。
我想要的是一个室内独立飞行应用程序。我想输入左边2米,然后右边3米,右转,然后10米到前面,左转,前面几米的坐标。
我尝试通过以下方法做到这一点,但我无法理解为什么它只通过一个值输入飞行几厘米。
function getprices(input) {
return input.match(/[0-9]+/g);
}
var subtotals = get_getprices('%GLOBAL_OrderTotal%');
var Grand_total = subtotals[0];
答案 0 :(得分:0)
我建议,改用方法:
droneControlService.moveDown(0);
droneControlService.moveUp(0);
droneControlService.turnRight(0);
droneControlService.turnLeft(0);
droneControlService.moveForward(0);
droneControlService.moveBackward(0);