add missing description for mqtt

This commit is contained in:
Jakob Ketterl 2024-02-17 00:52:35 +01:00
parent 4d1fdf08a0
commit a428d2ec58

View file

@ -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