自定义跟随我任务 DJI 安卓 SDK.



我正在尝试通过提供自定义坐标来使用 DJI Phantom 4 创建一个 FollowMeMission,类似于这篇文章 跟随我任务 DJI 移动 SDK 安卓版

我当前的代码如下所示:

private double lat = 48.5561726;
private double lng = 12.1138481;
private float initHeight = 10f;
private LocationCoordinate2D location;
if (getFollowMeMissionOperator().getCurrentState().toString().equals(FollowMeMissionState.READY_TO_EXECUTE.toString())){
getFollowMeMissionOperator().updateFollowingTarget(new LocationCoordinate2D(lat + 0.0001d, lng), new CommonCallbacks.CompletionCallback() {
@Override
public void onResult(DJIError djiError) {
setResultToToast("Mission updateFollowingTarget: " + (djiError == null ? "Successfully" : djiError.getDescription()));
}
});
//Toast.makeText(getApplicationContext(), "updateFollowingTarget...", Toast.LENGTH_SHORT).show();
Log.println(Log.INFO,"FOLLOW", "Before");
try{
Thread.sleep(2500);
}catch (InterruptedException e){
setResultToToast("InterruptedException!" + e.getMessage());
}
getFollowMeMissionOperator().startMission(FollowMeMission.getInstance().initUserData(lat + 0.0001d , lng, initHeight), new CommonCallbacks.CompletionCallback() {
@Override
public void onResult(DJIError djiError) {
setResultToToast("Mission Start: " + (djiError == null ? "Successfully" : djiError.getDescription()));
}});
}
else{
Toast.makeText(getApplicationContext(), getFollowMeMissionOperator().getCurrentState().toString(), Toast.LENGTH_SHORT).show();
}

我什至在调用 startMission() 之前添加了 2.5 秒的睡眠

时间,如本主题 http://forum.dev.dji.com/thread-33716-1-1.html发生的情况是,我调用 FollowMe(),2.5 秒后我收到消息"任务开始:成功",但没有来自 updateFollowTarget() 的任何回调。然后什么也没发生,无人机留在原地。

我做错了什么?我使用 updateFollowTarget() 和 startMission() 的方式是否正确?

此问题的原因是: 1.我们需要使用计时器以给定的频率更新以下目标。 2.移动物体(跟随目标)需要提供其动态位置。
请参考以下代码以针对您的情况进行优化:

private float initHeight = 10f;
private LocationCoordinate2D movingObjectLocation;
private AtomicBoolean isRunning = new AtomicBoolean(false);
private Subscription timmerSubcription;
private Observable<Long> timer =Observable.timer(100, TimeUnit.MILLISECONDS).observeOn(Schedulers.computation()).repeat();
private void followMeStart(){
if (getFollowMeMissionOperator().getCurrentState().toString().equals(FollowMeMissionState.READY_TO_EXECUTE.toString())){
//ToDo: You need init or get the location of your moving object which will be followed by the aircraft.
getFollowMeMissionOperator().startMission(FollowMeMission.getInstance().initUserData(movingObjectLocation.getLatitude() , movingObjectLocation.getLongitude(), initHeight), new CommonCallbacks.CompletionCallback() {
@Override
public void onResult(DJIError djiError) {
setResultToToast("Mission Start: " + (djiError == null ? "Successfully" : djiError.getDescription()));
}});
if (!isRunning.get()) {
isRunning.set(true);
timmerSubcription = timer.subscribe(new Action1<Long>() {
@Override
public void call(Long aLong) {
getFollowMeMissionOperator().updateFollowingTarget(new LocationCoordinate2D(movingObjectLocation.getLatitude(),
                          movingObjectLocation.getLongitude()),
 new CommonCallbacks.CompletionCallback() {
     @Override
     public void onResult(DJIError error) {
         isRunning.set(false);
     }
 });
}
});
}
} else{
Toast.makeText(getApplicationContext(), getFollowMeMissionOperator().getCurrentState().toString(), Toast.LENGTH_SHORT).show();
}
}

最新更新