Hi all,
I have configured 2 shutters with brel motor via rflink loader.
When I connect the RFLink to my windows PC, I am able to sent the following commands which are working perfectly, where 02 and 04 are different shutters:
10;BrelMotor;2d9312;04;UP;
10;BrelMotor;2d9312;04;DOWN;
10;BrelMotor;2d9312;02;UP;
10;BrelMotor;2d9312;02;DOWN;
When connecting the RFLink to my Home Assistant it seems the same commands are triggered, but nothing happens. HA Logging:
2024-10-09 14:40:30.880 DEBUG (MainThread) [homeassistant.components.rflink] Sending command: UP to Rflink device: brelmotor_2d9312_04
2024-10-09 14:40:30.880 DEBUG (MainThread) [rflink.protocol] sending command: {'protocol': 'brelmotor', 'id': '2d9312', 'switch': '04', 'command': 'UP'}
2024-10-09 14:40:30.880 DEBUG (MainThread) [rflink.protocol] writing data: '10;brelmotor;2d9312;04;UP;\r\n'
2024-10-09 14:40:30.880 DEBUG (MainThread) [rflink.protocol] waiting for acknowledgement
2024-10-09 14:40:31.992 DEBUG (MainThread) [rflink.protocol] received data: 20;01;OK;
2024-10-09 14:40:31.996 DEBUG (MainThread) [rflink.protocol] received data:
2024-10-09 14:40:31.996 DEBUG (MainThread) [rflink.protocol] got packet: 20;01;OK;
2024-10-09 14:40:31.997 DEBUG (MainThread) [rflink.protocol] decoded packet: {'node': 'gateway', 'protocol': 'unknown', 'ok': True}
2024-10-09 14:40:31.997 DEBUG (MainThread) [rflink.protocol] command response: {'node': 'gateway', 'protocol': 'unknown', 'ok': True}
2024-10-09 14:40:31.997 DEBUG (MainThread) [rflink.protocol] packet acknowledged
2024-10-09 14:40:32.569 DEBUG (MainThread) [homeassistant.components.rflink] Sending command: DOWN to Rflink device: brelmotor_2d9312_04
2024-10-09 14:40:32.569 DEBUG (MainThread) [rflink.protocol] sending command: {'protocol': 'brelmotor', 'id': '2d9312', 'switch': '04', 'command': 'DOWN'}
2024-10-09 14:40:32.569 DEBUG (MainThread) [rflink.protocol] writing data: '10;brelmotor;2d9312;04;DOWN;\r\n'
2024-10-09 14:40:32.570 DEBUG (MainThread) [rflink.protocol] waiting for acknowledgement
2024-10-09 14:40:33.692 DEBUG (MainThread) [rflink.protocol] received data: 20;02;OK;
2024-10-09 14:40:33.692 DEBUG (MainThread) [rflink.protocol] got packet: 20;02;OK;
2024-10-09 14:40:33.692 DEBUG (MainThread) [rflink.protocol] decoded packet: {'node': 'gateway', 'protocol': 'unknown', 'ok': True}
2024-10-09 14:40:33.693 DEBUG (MainThread) [rflink.protocol] command response: {'node': 'gateway', 'protocol': 'unknown', 'ok': True}
2024-10-09 14:40:33.693 DEBUG (MainThread) [rflink.protocol] packet acknowledged
My configuration.yaml:
rflink:
port: /dev/serial/by-id/usb-Arduino__www.arduino.cc__0042_95635333431351F01170-if00
wait_for_ack: true
cover:
- platform: rflink
devices:
brelmotor_2d9312_02:
name: "RolluikSchuifpui"
brelmotor_2d9312_04:
name: "RolluikAchterraam"
Any idea whats wrong?
Thanks all!