Git Product home page Git Product logo

Comments (4)

arpitpara avatar arpitpara commented on August 18, 2024 1

It's possible through off-board mode. As @julianoes mentioned without GPS drones should have either VIO or MO-CAP.
We've built a indoor drone using VIO with PX4. We use Velocity-Ned and Position-NED(Prefered) function for autonomous control through MAVSDK-Python. You can also try it.

from mavsdk-python.

julianoes avatar julianoes commented on August 18, 2024

That's a question that comes up often. I think it boils down to whether PX4 (assuming you're using PX4) can do autonomous flight without GPS.

Usually you need something like flow or VIO or a MOCAP system to do that. Otherwise you have to fly manually because you'd drift away pretty quickly.

from mavsdk-python.

Hmilzy avatar Hmilzy commented on August 18, 2024

Thank you for your answer.
Is it possible to use offboard mode?

`
await drone.action.arm()

print("Setting initial setpoints...")
await drone.offboard.set_velocity_ned(
    VelocityNedYaw(0.0, 0.0, 0.0, 0.0))  

print("Starting offboard control...")
try:
    await drone.offboard.start()
except OffboardError as error:
    print(f"Starting offboard mode failed with error code: {error._result.result}")
    print("-- Disarming")
    await drone.action.disarm()
    return

print("Taking off manually...")
await drone.offboard.set_velocity_ned(
    VelocityNedYaw(0.0, 0.0, -1.0, 0.0))  # Ascend with -1.0 m/s velocity

await asyncio.sleep(5)

print("Hovering...")
await drone.offboard.set_velocity_ned(
    VelocityNedYaw(0.0, 0.0, 0.0, 0.0))  # Hover in place

await asyncio.sleep(10)

print("Landing manually...")
await drone.offboard.set_velocity_ned(
    VelocityNedYaw(0.0, 0.0, 1.0, 0.0))  # Descend with 1.0 m/s velocity

await asyncio.sleep(5)

print("Stopping offboard control...")
try:
    await drone.offboard.stop()
except OffboardError as error:
    print(f"Stopping offboard mode failed with error code: {error._result.result}")

print("Disarming...")
await drone.action.disarm()

`

from mavsdk-python.

julianoes avatar julianoes commented on August 18, 2024

No, offboard requires a position (or at least velocity) estimate, unless you use attitude offboard.

from mavsdk-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.