mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
add missing description for mqtt
This commit is contained in:
parent
4d1fdf08a0
commit
a428d2ec58
|
|
@ -683,6 +683,12 @@ class FeatureDetector(object):
|
||||||
return self.command_is_runnable("dablin -h")
|
return self.command_is_runnable("dablin -h")
|
||||||
|
|
||||||
def has_paho_mqtt(self):
|
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:
|
try:
|
||||||
from paho.mqtt import __version__
|
from paho.mqtt import __version__
|
||||||
return True
|
return True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue