Is QGroundControl needed to control my rover or can I use a BlueOS extension?

I’ve sent you an email.

You’ll need some form of extension for the integration side of things (communicating with your peripheral board), and then you’ve got a few options for the interface:

  • include it in your integration extension
  • develop it as a separate extension, possibly together with us
  • modify QGC to support the data display and input options you need
    • QGC tends to be somewhat difficult to add functionalities to, and is an extra dependency required off the vehicle, so I probably wouldn’t recommend this one
  • some hybrid option of the above

This is cool to see - thanks for sharing! :slight_smile:

Our Cockpit extension has joystick support already - there’s a browser-based joystick API that make this kind of thing possible, although it’s a fair amount of work to get implemented in a generic way with support for quite arbitrary joysticks. If you only need a single type of joystick that does simplify things somewhat, because you can use a hardcoded mapping.

It’s not clear to me what your electronics stack includes. In the case of our Navigator board we control our thruster motors using servo-style signals from the ArduSub autopilot firmware, but as far as I’m aware ArduPilot firmwares don’t have any stepper motor support, and since you’re using your own electronics it may be quite a lot of work to configure a suitable ArduPilot firmware for your vehicle anyway.

I’m not sure what you mean on your last point there.

To clarify some points:

  • BlueOS is the extensible high-level software that runs on the Raspberry Pi (Onboard Computer)
  • The core BlueOS functionality includes being able to run an autopilot firmware belonging to the ArduPilot-family (like ArduSub) when the Onboard Computer is used as a host for a flight controller board like our Navigator
    • Other flight controller boards (like a Pixhawk) are freestanding and run the autopilot firmware internally (no host required), but they can still interface with a Raspberry Pi using BlueOS as a Companion Computer (generally via a USB connection)
  • ArduPilot firmwares communicate to other devices using the MAVLink communication protocol, but control their internal components using whatever protocol is appropriate for that sensor/actuator (e.g. the motors commonly use servo-style PWM signals, our external pressure sensor uses I2C, etc)
  • BlueOS also contains a camera manager, which allows configuring video streams from USB cameras, and redirecting RTSP streams (e.g. from an IP camera), then presenting those via the MAVLink Camera Protocol for easy discovery by a software like QGroundControl
    • This is unrelated to and independent of the autopilot functionality
  • recent ArduPilot firmwares have some functionality built in for interfacing with gimbals that are able to communicate using MAVLink, but if your PTZ camera does not present itself that way (which is likely the case) then that’s not relevant to you
  • BlueOS does not have any built in gimbal support outside that provided by the autopilot firmware (if one is running/connected), so this would likely need to be implemented via an integration extension

If you have a flight controller + MAVLink-enabled autopilot combination with “relay” support (e.g. Navigator + ArduSub) then BlueOS can pass along MAVLink commands from the topside to control those relays. Otherwise the signals will need to be passed to something else, likely via an extension.

ArduPilot firmwares have a library for interfacing with BME280 sensors, but I believe you can generally only have one of the same sensor type connected to the same bus, since the I2C addresses are hardcoded. There’s also a limit of 3 pressure sensors in a single autopilot. Both of those could be worked around by compiling a custom autopilot firmware, although it’s likely a fair amount of effort to learn enough about the ArduPilot codebase to modify those features.

You could instead just talk to the sensors directly from a BlueOS Extension.

I don’t believe the MAX9611 is supported in ArduPilot, so if you wanted to use an ArduPilot firmware you’d need to create a driver for it.

Alternatively you could talk to them directly from BlueOS, which still requires a driver but the interfacing code could be isolated to only your own dependencies and programs, instead of needing to be integrated into ArduPilot.

Either of these approaches is technically possible, but I expect displaying things in a BlueOS extension should be simpler than modifying QGC to display lots of new things, especially if you don’t want MAVLink to be a requirement for you data, and/or don’t want every display value to need a bunch of hardcoded boilerplate.

MAVLink is a communication protocol. BlueOS has a number of tools that use MAVLink to operate.