Hey all,
@allmyhinges
Wondering if I could get some help here. I am running Supervised in Proxmox and have a NooElec NESDR Mini 2 passed through to HA. I installed the rtl_433 add-on and the following config:
device 0
gain 0
frequency 433.92M
hop_interval 600
ppm_error 0
sample_rate 250k
report_meta level
report_meta noise
report_meta stats
report_meta time:usec
report_meta protocol
output json
output mqtt://192.168.1.244:1883,user=rtl_433,pass=HArtl433,events=rtl_433[/model][/id]
convert customary
stop_after_successful_events false
I mostly just took out the fluff from the example config and added my MQTT info.
Mosquitto broker is installed without logins and I can use MQTT explorer to see the MQTT messages coming through from my acurite sensor and the occasional TMPS driving by.
{"time":"2021-09-03 15:36:48.873488","protocol":40,"model":"Acurite-5n1","message_type":49,"id":754,"channel":"A","sequence_num":2,"battery_ok":0,"wind_avg_mi_h":0,"wind_dir_deg":247.5,"rain_in":0.06,"mic":"CHECKSUM"}
Now what I am struggling with is using the auto-discover to pull that into home assistant.
This is my auto-discover config:
mqtt_host: 192.168.1.244
mqtt_port: 1883
mqtt_user: rtl_433
mqtt_password: HArtl433
mrtt_retain: checked
rtl_topic: rtl_433
discovery_prefix: homeassistant
discovery_interval: 60
Here is the auto-discover log:
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] done.
[services.d] starting services
[services.d] done.
Starting rtl_433_mqtt_hass.py...
I have read through the Home Assistant mqtt discovery doc, but at this point I am kind of lost as to what is supposed to happen next.
What am I missing?