Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
jazzy

Package Summary

Tags No category tags.
Version 1.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version jazzy
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

1.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

1.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
kilted

Package Summary

Tags No category tags.
Version 2.25.122
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version kilted
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

2.25.122 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

2.25.121 (2025-12-08)

  • Backport for kilted.
  • Contributors: Stefan Fabian

2.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
rolling

Package Summary

Tags No category tags.
Version 3.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version rolling
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

3.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

2.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

No version for distro github showing humble. Known supported distros are highlighted in the buttons above.
Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

No version for distro galactic showing humble. Known supported distros are highlighted in the buttons above.
Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

No version for distro iron showing humble. Known supported distros are highlighted in the buttons above.
Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

No version for distro melodic showing humble. Known supported distros are highlighted in the buttons above.
Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange

No version for distro noetic showing humble. Known supported distros are highlighted in the buttons above.
Package symbol

qml6_ros2_plugin package from qml6_ros2_plugin repo

qml6_ros2_plugin

ROS Distro
humble

Package Summary

Tags No category tags.
Version 0.25.121
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A ROS 2 plugin for Qt6 QML. Enables full communication with ROS 2.
Checkout URI https://github.com/StefanFabian/qml6_ros2_plugin.git
VCS Type git
VCS Version humble
Last Updated 2025-12-12
Dev Status DEVELOPED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

A QML plugin for ROS. Enables full communication with ROS from QML.

Additional Links

No additional links.

Maintainers

  • Stefan Fabian

Authors

No additional authors.

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Documentation Status

Scientific Works

If you are using this module in a scientific context, feel free to cite this paper:

@INPROCEEDINGS{fabian2021hri,
  author = {Stefan Fabian and Oskar von Stryk},
  title = {Open-Source Tools for Efficient ROS and ROS2-based 2D Human-Robot Interface Development},
  year = {2021},
  booktitle = {2021 European Conference on Mobile Robots (ECMR)},
}

QML ROS2 Plugin

Connects QML user interfaces to the Robot Operating System 2 (ROS2). Please be aware that this loses some of the semantic information that the message type would normally provide, since you can subscribe to any message without specifying the type, and the type is only checked if you do specify it.

Currently, has support for the following:
Logging, Publisher, Subscription, ImageTransportSubscription, Service Client, Action Client, TfTransform, Ament Index, and querying topics, services, and actions.

https://github.com/StefanFabian/qml6_ros2_plugin/assets/2090520/c45280cf-24fe-4ff1-8423-30035deda10d

This demo interface utilizes Tf and a velocity publisher to control and display the turtle demo, requiring less than 200 lines of code for the entire interface. It is available in the examples folder as turtle_demo_control.qml.

Logging

Logging is supported and correctly reports from which QML file and line the message came!

import Ros2 1.0

Item {
  function doesWork() {
    Ros2.debug("A debug message")
    // Set the logging level to Debug (default is usually Info)
    Ros2.getLogger().setLoggerLevel(Ros2LoggerLevel.Debug);
    Ros2.debug("A debug message that is actually logged.")
    Ros2.info("I have some information")
    Ros2.warn("This is the last warning")
    Ros2.error("Great! Now there's an error.")
    Ros2.fatal("I'm dead")
    Ros2.info("Just so you know, fatal does not kill a node. Though they usually die after logging fatal")
  }
  // ...
}

Check the logging example in the examples directory!

Quickstart

Check the examples in the examples directory for a quick introduction on how to use this module. Can be used to create a Subscription to any topic and message type that is available on your system.
The type does not need to be known at the time of compilation.

Installation

You can either build this repository as part of your ROS2 workspace as you would any other ROS2 package, or set the CMake option GLOBAL_INSTALL to ON, which installs the plugin in your global qml module directory.
Please note that the plugin will still require a ROS2 environment when loaded to be able to load the message libraries.

You can install the dependencies using rosdep:
The following command assumes you are in the src folder of your ROS 2 workspace

rosdep install --from-paths . --ignore-packages-from-source

Documentation

You can find the documentation on readthedocs.io.

Alternatively, you can follow the steps below to build it yourself.

Dependencies

  • Doxygen
  • Sphinx
  • sphinx_rtd_theme
  • Breathe

Example for Ubuntu
Install dependencies

sudo apt install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe 

Build documentation

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package qml6_ros2_plugin

0.25.121 (2025-12-12)

  • Added encoding information to ImageTransportSubscription and fixed conversion from float to Y16. In accordance with depth image standards in ROS 16UC1 is interpreted as mm whereas float is in m. The conversion now respects that.
  • Contributors: Stefan Fabian

0.25.120 (2025-12-08)

  • Initial release.
  • Contributors: Stefan Fabian

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged qml6_ros2_plugin at Robotics Stack Exchange