1

Sdk 3.0.1 を使用してファントム 3 を回転させようとしていますが、成功しません。

私のコード:

DJIFlightController flightController = ((DJIAircraft) mProduct).getFlightController();

flightController.enableVirtualStickControlMode(new DJICompletionCallback() {
    @Override
    public void onResult(DJIError error) {
        if (error == null) {
            showToast("enableVirtualStickControlMode: success");
        } else {
            showToast(error.getDescription());
        }
    }
});
try {
    sleep(5000);
} catch (InterruptedException e) {
    e.printStackTrace();
}
showToast("Set yaw control mode to angle");
flightController.setHorizontalCoordinateSystem(DJIFlightControllerDataType.DJIVirtualStickFlightCoordinateSystem.Body);
flightController.setRollPitchControlMode(DJIFlightControllerDataType.DJIVirtualStickRollPitchControlMode.Angle);
flightController.setVerticalControlMode(DJIFlightControllerDataType.DJIVirtualStickVerticalControlMode.Velocity);
flightController.setYawControlMode(DJIFlightControllerDataType.DJIVirtualStickYawControlMode.Angle);
try {
    sleep(5000);
} catch (InterruptedException e) {
    e.printStackTrace();
}
DJIFlightControllerDataType.DJIVirtualStickFlightControlData flightControlData =
        new DJIFlightControllerDataType.DJIVirtualStickFlightControlData(0, 0, 45, 0);
flightController.sendVirtualStickFlightControlData(flightControlData, new DJICompletionCallback() {
    @Override
    public void onResult(DJIError error) {
        if (error == null) {
            showToast("Rotation: success");
        } else {
            showToast(error.getDescription());
        }
    }
});
try {
    sleep(5000);
} catch (InterruptedException e) {
    e.printStackTrace();
}


flightController.disableVirtualStickControlMode(new DJICompletionCallback() {
    @Override
    public void onResult(DJIError error) {
        if (error == null) {
            showToast("disableVirtualStickControlMode: success");
        } else {
            showToast(error.getDescription());
        }
    }
});

「Rotation: success」というメッセージが表示されますが、機体が動きません。私は何か間違ったことをしていますか?どんな助けでも本当に感謝しています。

4

1 に答える 1

4

以前にこの問題が発生しました。sendVirtualStickFlightControlData一度呼び出すだけで、パフォーマンスは固定されます。DJI サポートに電子メールを送信したところ、このメソッドを 5 Hz の周波数で呼び出すよう提案されました。テストしましたが、すべて問題ありませんでした。

何かのようなもの:

    Timer timer = new Timer();

    timer.schedule(new TimerTask() {

        @Override
        public void run() {
            mFlightController.sendVirtualStickFlightControlData(flightControlData, new DJICompletionCallback() {
                @Override
                public void onResult(DJIError error) {
                    if (error == null) {
                        showToast("Rotation: success");
                    } else {
                        showToast(error.getDescription());
                    }
                }
            });
        }
    }, 0, 200); 
于 2016-02-12T12:55:33.623 に答える