You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update Rflink hub component configuration
Update style of Rflink light component documentation to follow new configuration variables description.
Related to home-assistant#6385.
* Homogeneous with PR home-assistant#7200
* You are right
Co-Authored-By: javicalle <31999997+javicalle@users.noreply.github.com>
* 👕 Relative links
Copy file name to clipboardExpand all lines: source/_components/rflink.markdown
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,15 @@ ha_category: Hub
12
12
ha_release: 0.38
13
13
---
14
14
15
-
The `rflink` component 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 Mega firmware that allows two-way communication with a multitude of RF wireless devices using cheap hardware (Arduino + transceiver).
15
+
The `rflink` component 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 Mega firmware that allows two-way communication with a multitude of RF wireless devices using cheap hardware (Arduino + transceiver).
16
16
17
17
The 433 MHz spectrum is used by many manufacturers mostly using their own protocol/standard and includes devices like: light switches, blinds, weather stations, alarms and various other sensors.
18
18
19
19
RFLink Gateway supports a number of RF frequencies, using a wide range of low-cost hardware. [Their website](http://www.rflink.nl/blog2/) provides details for various RF transmitters, receivers and transceiver modules for 433MHz, 868MHz and 2.4 GHz.
20
20
21
-
<pclass='note'>
22
-
Note: Versions later than R44 add support for Ikea Ansluta, Philips Living Colors Gen1 and MySensors devices.
23
-
</p>
21
+
<pclass='note'>
22
+
Note: Versions later than R44 add support for Ikea Ansluta, Philips Living Colors Gen1 and MySensors devices.
23
+
</p>
24
24
25
25
A complete list of devices supported by RFLink can be found [here](http://www.rflink.nl/blog2/devlist).
26
26
@@ -50,20 +50,20 @@ host:
50
50
wait_for_ack:
51
51
description: Wait for RFLink to acknowledge commands sent before sending new command (slower but more reliable).
52
52
required: false
53
-
type: string
54
53
default: true
54
+
type: boolean
55
55
ignore_devices:
56
56
description: List of device id's to ignore. Supports wildcards (`*`) at the end.
57
57
required: false
58
-
type: string
58
+
type: [list, string]
59
59
reconnect_interval:
60
60
description: Time in seconds between reconnect attempts.
61
61
required: false
62
+
default: 10
62
63
type: integer
63
64
{% endconfiguration %}
64
65
65
66
### {% linkable_title Full example %}
66
-
67
67
```yaml
68
68
# Example configuration.yaml entry
69
69
rflink:
@@ -117,9 +117,9 @@ sensor:
117
117
automatic_add: true
118
118
```
119
119
120
-
[RFLink Switches](https://www.home-assistant.io/components/switch.rflink/) cannot be added automatically.
120
+
[RFLink Switches](/components/switch.rflink/) and [RFLink Binary Sensors](/components/binary_sensor.rflink/) cannot be added automatically.
121
121
122
-
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. However, 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.
122
+
The RFLink component does not know the difference between a binary sensor, a switch and a light. Therefore all switchable devices are automatically added as light by default. However, once the ID of a switch is known, it can be used to configure it as a switch or a binary sensor type in Home Assistant, for example, to add it to a different group, hide it or configure a nice name.
123
123
124
124
### {% linkable_title Ignoring devices %}
125
125
@@ -161,7 +161,7 @@ If you find a device is recognized differently, with different protocols or the
161
161
162
162
### {% linkable_title Debug Logging %}
163
163
164
-
For debugging purposes or context when investigating issues you can enable debug logging for Rflink with the following config snippet:
164
+
For debugging purposes or context when investigating issues you can enable debug logging for RFLink with the following config snippet:
0 commit comments