ich habe einen MQTT Sensor eingerichtet. Bekomme aber keine Daten. Im log steht:
Code: Alles auswählen
2026-04-30 15:24:33,244 - WARNING - cbpi.controller.satellite_controller - Failed to push data via mqtt: [code:4] The client is not currently connected.
im MQTT Explore sehe ich die Verbindung:
Code: Alles auswählen
topic shelly-4/status/temperature:100
value {"id": 100,"tC":43.4, "tF":110.2}
Getest habe ich auch mit dem mosquitto:
Code: Alles auswählen
mosquitto_sub -h 10.x.x.x -p 1883 -t 'shelly-4/status/temperature:100' | while read line; do temp=$(echo "$line" | sed -E 's/.*"tC":([0-9.]+).*/\1/'); mosquitto_pub -h 10.x.x.x -p 1883 -t 'cbpi/temperature1' -m "$temp"; doneJemand eine Idee warum der MQTT Sensor nicht reagiert?
