You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using hass.io 0.103.3 installed on Beaglebone black
I installed your add-on and used the official mosquitto broket add-on v5.1
When I run the add-on, nothing special shows in the log but the broker received one set of data only, no updates. The broker gives a message about "socket error on client xxxx disconnecting" and nothing else.
I am using a current cost transmitter and when using rtl_433 alone and the json format looks like this : {"time" : "2019-12-24 10:46:53", "model" : "CurrentCost-TX", "id" : 2972, "power0" : 0, "power1" : 0, "power2" : 0}
However when I increased the log level in your script I got this ouput : echo '{"time"' : '"2019-12-24' '11:27:49",' '"model"' : '"CurrentCost-TX",' '"id"' : 2972, '"power0"' : 0, '"power1"' : 0, '"power2"' : '0}'
Notice there are single quotes missing around double quotes at the beginning and the end. I guess this messed up with the broker.
I used the workaround mentionned in another issue and it works now althought I lost the autodiscovery part.
Hope that helps !
The text was updated successfully, but these errors were encountered:
I continued to dig and I think I found a good solution.
It turns out the rtl_433 program can now have its output sent directly to a MQTT broker.
So from line 183 down of the rtl2mqtt.sh script here is my replacement solution :
The topic for my current cost meter becomes "rtl_433/CurrentCost-TX/2972" and is available in hass.io. No stalls yet and works like a charm.
I used "-M newmodel" because the models names are more consistent and make use of dashes "-" instead of space in their name.
I did not try to make autodiscovery work as it seemed too complicated to setup for my need. My only last "hack" was that I wanted to monitor two protocols and I had to hardcode the second one (add -R XX as needed).
Thanks for the inputs @yvesle
It would be nice if I had time to maintain this properly! Great that you got it working, and I think that using rtl433 built in mqtt client is the right approach. If you are able to submit a pr I’d be happy to merge it.
Cheers!
Hi and thank you for the great work !
Using hass.io 0.103.3 installed on Beaglebone black
I installed your add-on and used the official mosquitto broket add-on v5.1
When I run the add-on, nothing special shows in the log but the broker received one set of data only, no updates. The broker gives a message about "socket error on client xxxx disconnecting" and nothing else.
I am using a current cost transmitter and when using rtl_433 alone and the json format looks like this :
{"time" : "2019-12-24 10:46:53", "model" : "CurrentCost-TX", "id" : 2972, "power0" : 0, "power1" : 0, "power2" : 0}
However when I increased the log level in your script I got this ouput :
echo '{"time"' : '"2019-12-24' '11:27:49",' '"model"' : '"CurrentCost-TX",' '"id"' : 2972, '"power0"' : 0, '"power1"' : 0, '"power2"' : '0}'
Notice there are single quotes missing around double quotes at the beginning and the end. I guess this messed up with the broker.
I used the workaround mentionned in another issue and it works now althought I lost the autodiscovery part.
Hope that helps !
The text was updated successfully, but these errors were encountered: