Hello, I have some issues related to Rflink integration. I have no idea what I am doing wrong. First I did not download any files, components, etc. I just put this code into my configuration.yaml:
rflink:
port: /dev/serial/by-id/usb-1a86_USB2.0-Serial-if00-port0
wait_for_ack: false
reconnect_interval: 20
sensor:
- platform: rflink
automatic_add: true
devices:
'auriolv3_1701_temp':
sensor_type: temperature
unit_of_measurement: "°C"
name: "Temperature 1"
'auriolv3_1701_hum':
sensor_type: humidity
name: "Humidity 1"
'auriolv3_c103_temp':
sensor_type: temperature
unit_of_measurement: "°C"
name: "Temperature 2"
'auriolv3_c103_hum':
sensor_type: humidity
name: "Humidity 2"
logger:
default: info
logs:
rflink: debug
homeassistant.components.rflink: debug
Additionally this is what I can find in my logs:
2020-05-21 09:40:31 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_1701_hum', 'sensor': 'humidity', 'value': 50, 'unit': '%'}
2020-05-21 09:40:31 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_1701_hum', 'sensor': 'humidity', 'value': 50, 'unit': '%'}
2020-05-21 09:40:31 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_1701_update_time', 'sensor': 'update_time', 'value': 1590046832, 'unit': 's'}
2020-05-21 09:40:31 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_1701_update_time', 'sensor': 'update_time', 'value': 1590046832, 'unit': 's'}
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] received data: 20;FD;Auriol V3;ID=C103;TEMP=00a
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] received data: f;HUM=44;
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] got packet: 20;FD;Auriol V3;ID=C103;TEMP=00af;HUM=44;
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] decoded packet: {'node': 'gateway', 'protocol': 'auriol v3', 'id': 'c103', 'temperature': 17.5, 'temperature_unit': '°C', 'humidity': 44, 'humidity_unit': '%'}
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_c103_temp', 'sensor': 'temperature', 'value': 17.5, 'unit': '°C'}
2020-05-21 09:41:19 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_c103_temp', 'sensor': 'temperature', 'value': 17.5, 'unit': '°C'}
2020-05-21 09:41:19 DEBUG (MainThread) [homeassistant.components.rflink] entity_ids: []
2020-05-21 09:41:19 DEBUG (MainThread) [homeassistant.components.rflink] device_id not known and automatic add disabled
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_c103_hum', 'sensor': 'humidity', 'value': 44, 'unit': '%'}
2020-05-21 09:41:19 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_c103_hum', 'sensor': 'humidity', 'value': 44, 'unit': '%'}
2020-05-21 09:41:19 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_c103_update_time', 'sensor': 'update_time', 'value': 1590046879, 'unit': 's'}
2020-05-21 09:41:19 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_c103_update_time', 'sensor': 'update_time', 'value': 1590046879, 'unit': 's'}
2020-05-21 09:41:40 DEBUG (MainThread) [rflink.protocol] received data: 20;FE;Auriol V3;ID=1701;TEMP=00a
2020-05-21 09:41:40 DEBUG (MainThread) [rflink.protocol] received data: a;HUM=50;
2020-05-21 09:41:40 DEBUG (MainThread) [rflink.protocol] got packet: 20;FE;Auriol V3;ID=1701;TEMP=00aa;HUM=50;
2020-05-21 09:41:40 DEBUG (MainThread) [rflink.protocol] decoded packet: {'node': 'gateway', 'protocol': 'auriol v3', 'id': '1701', 'temperature': 17.0, 'temperature_unit': '°C', 'humidity': 50, 'humidity_unit': '%'}
2020-05-21 09:41:40 DEBUG (MainThread) [rflink.protocol] got event: {'id': 'auriolv3_1701_temp', 'sensor': 'temperature', 'value': 17.0, 'unit': '°C'}
2020-05-21 09:41:40 DEBUG (MainThread) [homeassistant.components.rflink] event of type sensor: {'id': 'auriolv3_1701_temp', 'sensor': 'temperature', 'value': 17.0, 'unit': '°C'}
2020-05-21 09:41:40 DEBUG (MainThread) [homeassistant.components.rflink] entity_ids: []
2020-05-21 09:41:40 DEBUG (MainThread) [homeassistant.components.rflink] device_id not known and automatic add disabled
It looks like entity is not being created. What am I doing wrong?