Custom widgets which can be used in UAV/Drone ground control station development.
Currently supports following widgets
- Dial (for Engine or Rotor RPM)
- Fuel Indicator
- Flap Indicator (for fixed wing UAV)
- Wind Speed Indicator
- Wind Direction Indicator
- Battery Indicator
Each custom widget is implemented in separate .cpp
and .h
file. To use the widget copy the corresponding .cpp
and .h
file into your project. You can either create the widget dynamically or through Qt designer form.
To use Dial widget, copy dial.cpp
and dial.h
files.
To use Flap widget, copy flapindicator.cpp
and flapindicator.h
files.
To use Fuel widget, copy fuelindicator.cpp
and fuelindicator.h
files.
To use SpeedFan widget, copy speedfan.cpp
and speedfan.h
files.
This repo contains a test program to demonstrate how to use these widgets.
I'll be adding more widgets in the future.