Skip to content

Commit 93b4735

Browse files
pascalfabaff
pascal
authored andcommitted
Rflink cover component (home-assistant#3145)
* Markdown for rflink cover * . * Rewritten some parts based on the feedback from Landrash * Rewritten some parts based on the feedback from Landrash ( now saved the file :) ) * Update cover.rflink.markdown * bump version release * Fixed comments from frenck minor spelling & grammar issues * version bump * Update cover.rflink.markdown * version bump didn't made it in 0.54
1 parent 7db17b0 commit 93b4735

File tree

1 file changed

+66
-25
lines changed

1 file changed

+66
-25
lines changed
Lines changed: 66 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: page
33
title: "RFLink Cover"
4-
description: "Instructions how to integrate RFXtrx covers into Home Assistant."
5-
date: 2016-08-24 14:30
4+
description: "Instructions how to integrate RFLink Somfy RTS Cover into Home Assistant."
5+
date: 2017-08-08
66
sidebar: true
77
comments: false
88
sharing: true
@@ -12,47 +12,88 @@ ha_category: Cover
1212
ha_release: 0.55
1313
---
1414

15-
The `rflink` cover platform supports devices that use [RFLink gateway firmware](http://www.nemcon.nl/blog2/), for example the [Nodo RFLink Gateway](https://www.nodo-shop.nl/nl/21-rflink-gateway). RFLink gateway is an Arduino firmware that allows two-way communication with a multitude of RF wireless devices using cheap hardware (Arduino + transceiver).
15+
The `rflink` cover platform supports devices that use [RFLink gateway firmware](http://www.nemcon.nl/blog2/), for example, the [Nodo RFLink Gateway](https://www.nodo-shop.nl/nl/21-rflink-gateway). RFLink gateway is an Arduino firmware that allows two-way communication with a multitude of RF wireless devices using cheap hardware (Arduino + transceiver).
1616

17-
First you have to set up your [rflink hub](/components/rflink/).
17+
First, you have to set up your [rflink hub](/components/rflink/).
1818

19-
The RFLink component does not know the difference between a `switch` and a `light`. Therefore all switchable devices are automatically added as `light` by default.
19+
After configuring the RFLink hub covers will be automatically discovered and added. Except the Somfy RTS devices.
2020

21-
RFLink switch/light/cover ID's are composed of: protocol, id, switch. For example: `newkaku_0000c6c2_1`.
21+
### {% setting up a Somfy RTS device%}
2222

23-
Once the ID of a switch is known it can be used to configure it as a switch type in HA, for example to add it to a different group, hide it or configure a nice name.
23+
You have to add the Somfy RTS manually with the supplied RFlinkLoader (Windows only).
2424

25-
To add RFLink to your installation, add the following to your Home Assistant `configuration.yaml` file:
25+
Press the Learn button on the original Somfy remote enter the following code within 3 seconds. Your blinds will go up and down shortly:
26+
27+
````
28+
10;RTS;02FFFF;0412;3;PAIR;
29+
````
30+
31+
Your blinds will go up and down again. This means your Rflink is now paired with your RTS motor.
32+
To check this enter the following code again and see if there is a record.
33+
34+
````
35+
10;RTSSHOW;
36+
````
37+
````
38+
RTS Record: 0 Address: FFFFFF RC: FFFF
39+
RTS Record: 1 Address: FFFFFF RC: FFFF
40+
RTS Record: 2 Address: FFFFFF RC: FFFF
41+
RTS Record: 3 Address: 02FFFF RC: 0018
42+
RTS Record: 4 Address: FFFFFF RC: FFFF
43+
RTS Record: 5 Address: FFFFFF RC: FFFF
44+
RTS Record: 6 Address: FFFFFF RC: FFFF
45+
RTS Record: 7 Address: FFFFFF RC: FFFF
46+
RTS Record: 8 Address: FFFFFF RC: FFFF
47+
RTS Record: 9 Address: FFFFFF RC: FFFF
48+
RTS Record: 10 Address: FFFFFF RC: FFFF
49+
RTS Record: 11 Address: FFFFFF RC: FFFF
50+
RTS Record: 12 Address: FFFFFF RC: FFFF
51+
RTS Record: 13 Address: FFFFFF RC: FFFF
52+
RTS Record: 14 Address: FFFFFF RC: FFFF
53+
RTS Record: 15 Address: FFFFFF RC: FFFF
54+
````
55+
56+
After configuring the RFLink Somfy RTS you have to add the cover to the `configuration.yaml` file like any other RFlink device.
57+
58+
RFLink cover ID's are composed of: protocol, id, and gateway. For example: `RTS_0100F2_0`.
59+
60+
Once the ID of a cover is known, it can be used to configure the cover in Home Assistant, for example, to add it to a different group, hide it or set a nice name.
61+
62+
Assigning a name to a cover:
2663

2764
```yaml
2865
# Example configuration.yaml entry
2966
cover:
30-
platform: rflink
31-
device_defaults:
32-
fire_event: true
33-
signal_repetitions: 2
34-
devices:
35-
newkaku_0000c6c2_1:
36-
name: Ceiling fan
37-
conrad_00785c_0a:
38-
name: Motion sensor kitchen
39-
67+
- platform: rflink
68+
devices:
69+
RTS_0100F2_0:
70+
name: SunShade
71+
bofumotor_455201_0f:
72+
name: Sovrumsgardin
4073
```
4174
4275
Configuration variables:
4376
44-
- **devices** (*Optional*): A list of devices with their name to use in the frontend.
77+
- **automatic_add** (*Optional*): Automatically add new/unconfigured devices to Home Assistant if detected (default: True).
78+
- **devices** (*Optional*): A list of devices with their name to use in the frontend.
4579
- **device_defaults**: (*Optional*)
46-
- **fire_event** (*Optional*): Set default `fire_event` for RFLink switch devices (see below).
47-
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below).
80+
- **fire_event** (*Optional*): Set default `fire_event` for Rflink switch devices (see below).
81+
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for Rflink switch devices (see below).
4882

4983
Device configuration variables:
5084

51-
- **name** (*Optional*): Name for the device, defaults to RFLink ID.
52-
- **aliases** (*Optional*): Alternative RFLink ID's this device is known by.
85+
- **name** (*Optional*): Name for the device, defaults to Rflink ID.
86+
- **aliases** (*Optional*): Alternative Rflink ID's this device is known by.
5387
- **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False).
54-
- **signal_repetitions** (*Optional*): Repeat every RFLink command this number of times (default: 1)
55-
- **group** (*Optional*): Allow switch to respond to group commands (ALLON/ALLOFF). (default: yes)
88+
- **signal_repetitions** (*Optional*): Repeat every Rflink command this number of times (default: 1).
89+
- **fire_event_** (*Optional*): Set default `fire_event` for RFLink switch devices (see below).
90+
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below).
91+
- **group** (*Optional*): Allow light to respond to group commands (ALLON/ALLOFF). (default: yes)
5692
- **group_aliases** (*Optional*): `aliases` which only respond to group commands.
5793
- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands.
5894

95+
96+
### {% linkable_title Device support %}
97+
98+
See [device support](/components/rflink/#device-support)
99+

0 commit comments

Comments
 (0)