QGroundControl (QGC) is an intuitive and powerful ground control station (GCS) for UAVs.
The primary goal of QGC is ease of use for both first time and professional users. It provides full flight control and mission planning for any MAVLink enabled drone, and vehicle setup for both PX4 and ArduPilot powered UAVs. Instructions for using QGroundControl are provided in the User Manual (you may not need them because the UI is very intuitive!)
All the code is open-source, so you can contribute and evolve it as you want. The Developer Guide explains how to build and extend QGC.
Key Links:
- Website (qgroundcontrol.com)
- User Manual
- Developer Guide
- Discussion/Support
- Contributing
- License
You need to have an AWS account with the necessary permissions for ECRPublic and configure the AWS CLI.
- Log in to AWS ecr public:
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
- Pull the desired release (image tag) you want to set to latest:
docker pull public.ecr.aws/m7l5v7s4/qgroundcontrol:<release version>
- Tag the release as "latest":
docker tag public.ecr.aws/m7l5v7s4/qgroundcontrol:<release version> public.ecr.aws/m7l5v7s4/qgroundcontrol:latest
- Push the "latest" tag:
docker push public.ecr.aws/m7l5v7s4/qgroundcontrol:latest
- Log out of AWS ecr public:
docker logout public.ecr.aws