I am working on developing program for autonomous control of DJI matrice drone. I like to have precise landing of DJI drone with tolerance of approx 5cm in X and Y axes. For this I am trying to control the drone until 50cm from ground and then immediately landing() function is called. But after the landing() function is called, I see that the drone moves in X and Y directions as well. Due to this landing within defined tolerance fails. Is there a way, that I may write an own code for autolanding program with different constraints. Thanks.
1
There are 1 answers
Related Questions in CONTROLS
- How to control the volume of an iPhone programmatically in objective-c
- Accurately placing multiple controls in a row programmatically with dynamic table layout panel
- How to change the rule set in the qcc R package for Control Charts / Statistical Process Control
- C# Winform Change the type of row for data grid view
- How to use Complex conjugate in GEKKO
- Logging to a dynamically created WinForms control using the configuration file with log4net
- rlocus block diagram issue, k gain block before or after the summing junction for rlocus() command?
- What's git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags --set-upstream origin master:master
- C# UWP MediaPlayerElement customize TransportControls CCSelection with Choose Subtitle
- 'AutoSize=true' panel height not adjusting when labels become multiline
- .NET Maui What is wrong with this custom control's bindable properties?
- HTB overlimits traffic BW
- How can i get rid of the error = " Control must be added to the page first." on flet python
- Get all elements of a group property in Gambas
- Unity Scene view unable to pan
Related Questions in DJI-SDK
- pullMediaFileListFromCamera keeps in UPDATING state on DJI MSDK
- Robot that moves with putting in X,Y coordinates of a U shaped field
- trying to builld rtos dji psdk sample ubuntu
- DJI MSDK v5.7 Take off Fails
- How to get updates while Running an Android App with DJI MSDK while minimized?
- How to get DJI MSDK (v5) RTK location and fused Alti?
- Connecting to a DJI drone using MQTT
- Can't find files with a .txt extension with logs in FlightRecords (using DJI MSDK)
- Not able to get live streaming from DJI Tello on ubuntu 22
- react-native "type error: undefined is not a function" for a function bridged from native code
- Probing the target board failed - Nividia TX2
- Unable to connect DJI RC N1 to Raspberry Pi 4 running Lineage OS
- DJI SDK 5.1.7 RTMP streaming on primary channel crashes main app Android
- java.lang.UnsatisfiedLinkError in DJI SDK
- Im Taking Request_handler_not_found
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
you can use a combination of a few tools:
Use flightCtrl APIs such as
positionAndYawControldocumented here to command the drone in the z-axis, slowly reducing the z position desiredMonitor flight status using
broadcast->getStatus()as documented here, and keep sending lower z-setpoints till the drone's flight status changes toM100FlightStatus::LANDINGSend
disArm()command to turn the motors off and ensure that the status changes toM100FlightStatus::FINISHING_LANDING.You might have to experiment a little with the z set points and the time duration to keep sending lower setpoints in order to get this to work.