Add HA script compat for paho-mqtt 2.0.0 via legacy callback API ()

This commit is contained in:
Ben Winslow 2024-05-02 14:24:58 -04:00 committed by GitHub
parent 28a846f152
commit 8be3ef1507
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -30,7 +30,10 @@ TIMEOUT_STALE_SENSOR = 600 # Seconds before showing a timeout indicator
# log = logging.getLogger() # Single process logger
log = mp.log_to_stderr() # Multiprocessing capable logger
mqtt_client = mqtt.Client("RTL_433_Test")
if hasattr(mqtt, 'CallbackAPIVersion'): # paho >= 2.0.0
mqtt_client = mqtt.Client(callback_api_version=mqtt.CallbackAPIVersion.VERSION1, client_id="RTL_433_Test")
else:
mqtt_client = mqtt.Client(client_id="RTL_433_Test")
sensor_state = dict() # Dictionary containing accumulated sensor state

View file

@ -984,7 +984,10 @@ def bridge_event_to_hass(mqttc, topic_prefix, data):
def rtl_433_bridge():
"""Run a MQTT Home Assistant auto discovery bridge for rtl_433."""
mqttc = mqtt.Client()
if hasattr(mqtt, 'CallbackAPIVersion'): # paho >= 2.0.0
mqttc = mqtt.Client(callback_api_version=mqtt.CallbackAPIVersion.VERSION1)
else:
mqttc = mqtt.Client()
if args.debug:
mqttc.enable_logger()

View file

@ -111,7 +111,10 @@ def rtl_433_probe():
"""Run a rtl_433 UDP listener."""
## Connect to MQTT
mqttc = mqtt.Client()
if hasattr(mqtt, 'CallbackAPIVersion'): # paho >= 2.0.0
mqttc = mqtt.Client(callback_api_version=mqtt.CallbackAPIVersion.VERSION1)
else:
mqttc = mqtt.Client()
mqttc.on_connect = mqtt_connect
mqttc.on_disconnect = mqtt_disconnect
if MQTT_USERNAME != None: