From a428d2ec58b0eee710417001ecb17d820240e6da Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 17 Feb 2024 00:52:35 +0100 Subject: [PATCH] add missing description for mqtt --- owrx/feature.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/owrx/feature.py b/owrx/feature.py index 93fad5da..f5b76aeb 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -683,6 +683,12 @@ class FeatureDetector(object): return self.command_is_runnable("dablin -h") def has_paho_mqtt(self): + """ + OpenWebRX can pass decoded signal data to an MQTT broker for processing in third-party applications. To be able + to do this, the [paho-mqtt](https://pypi.org/project/paho-mqtt/) library is required. + + If you are using Debian or Ubuntu, you can install the `python3-paho-mqtt` package. + """ try: from paho.mqtt import __version__ return True