I want an additional sensor for my multirotor to hold its altitude when hovering indoors. I was thinking a sonar sensor or lidar sensor. Has anyone tried this? There are a number of Arduino solutions for these sensors so I am thinking it wouldn’t be too much effort to do, but looking for some guidance or examples of people who’ve already done this. Thanks!
Hi mjdepiro,
The MultiWii project was using some input sensor and still have some code in it’s core for this but it’s not active.
You will have to acquire the information from the sensor and process it. One major problem is the fact that the UAV sill tilt and the distance from the ground when tilted will change.
The Quadrino Nano have I2C and Serial inputs available so you can connect any sensor but we suggest I2C.
DiaLFonzo,
Thanks for the reply! I will search through the MultiWii package and the github for it. Do you have any pointers where it might be?
If I have to write my own code to run a sensor, it might not be so bad. I am not overly worried about pitch or roll affecting the reading since it is always in a quasi-steady horizontal plane and I can program it to have a slower response time wrt to the flight controls. Changes in the environment as it moves will be an issue though, I am not sure what the current methods are for dealing with this. For example, if it flies over a table, or uneven ground terrain.
It would be really nice to have some working code for altitude hold on MultiWii using a Lidar or other sensor.
If you look at the “config.h” of MultiWii you will find a section “independent sensors” where some sonar sensors are already supported.
However it will only give you the values and no code use it.
You will also find many people trying to make it work like HERE.