Hi all,
I'm trying to get my UNNI thermometers to connect to my home assistant. In the rtl_433 logs, I get the following which looks like a good first step:
time : 2026-02-23 10:23:28
model : Oregon-THGR810
House Code: 72
Channel : 1
Battery : 0
Celsius : 14.10 C
Humidity : 35 %
Modulation: ASK
Freq : 434.0 MHz
RSSI : -0.1 dB
SNR : 23.6 dB
Noise : -23.7 dB
time : 2026-02-23 10:23:28
model : Oregon-THGR810
House Code: 56
Channel : 2
Battery : 0
Celsius : 0.60 C
Humidity : 85 %
Modulation: ASK
Freq : 434.0 MHz
RSSI : -0.1 dB
SNR : 23.7 dB
Noise : -23.8 dB
my YAML is the following:
mqtt:
sensor:
- name: "Outside Temperature"
unique_id: oregon_56_temp
state_topic: "rtl_433/9b13b3f4-rt1433/devices/Oregon-THGR810/2/56/temperature_C"
unit_of_measurement: "°C"
device_class: temperature
- name: "Outside Humidity"
unique_id: oregon_56_humidity
state_topic: "rtl_433/9b13b3f4-rt1433/devices/Oregon-THGR810/2/56/humidity"
unit_of_measurement: "%"
device_class: humidity
but those entities then have status unknown. Could someone give me some debugging pointers? Thanks!