Pixhawk and Qt Creator

I am working with Pixhawk Standard Set Cube Orange and I need to program it on qtcreator to retrieve the position of the robot in real time I would like to know please if there is any “sdk” or a code exemple
Best Regards

Nope, the firmware running on the Pixhawk is programmed either in MS VS code, or in eclipse, not in Qt Creator.

But you can use Qt Creator to program the QGroundControl software that runs on the ground PC.

Please do not confuse software with firmware.

Both communicate in real-time using mavlink protocol. All you need to do is to write a software that can understand mavlink. pymavlink generates mavlink language bindings for C, C++, C#, Java, and others.
You should use that to generate the mavlink interfaces in your favorite programing language.

1 Like