LoginSignup
1
1

More than 1 year has passed since last update.

【DJI MSDK V5】KeyStartAutoLanding送信後に降下が途中で止まってしまう問題について

Last updated at Posted at 2023-05-14

問題

自動着陸を行うために、KeyStartAutoLanding送信後、高度-0.5付近で降下が止まってしまった。

    fun startLanding(callback: CommonCallbacks.CompletionCallbackWithParam<EmptyMsg>) {
        FlightControllerKey.KeyStartAutoLanding.create().action({
            callback.onSuccess(it)
        }, { e: IDJIError ->
            callback.onFailure(e)
        })
    }

▼-0.5付近で降下が止まっている
image.png

解決

KeyConfirmLandingを送信すれば着陸できた

    fun confirmLanding(callback: CommonCallbacks.CompletionCallbackWithParam<EmptyMsg>) {
        FlightControllerKey.KeyConfirmLanding.create().action({
            callback.onSuccess(it)
        }, { e: IDJIError ->
            callback.onFailure(e)
        })
    }

▼実施時の動画

前提条件

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1