mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-15 05:16:49 +00:00
Rflink cover component (#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
This commit is contained in:
parent
7db17b0a36
commit
93b4735557
@ -1,8 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: "RFLink Cover"
|
||||
description: "Instructions how to integrate RFXtrx covers into Home Assistant."
|
||||
date: 2016-08-24 14:30
|
||||
description: "Instructions how to integrate RFLink Somfy RTS Cover into Home Assistant."
|
||||
date: 2017-08-08
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
@ -12,47 +12,88 @@ ha_category: Cover
|
||||
ha_release: 0.55
|
||||
---
|
||||
|
||||
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).
|
||||
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).
|
||||
|
||||
First you have to set up your [rflink hub](/components/rflink/).
|
||||
First, you have to set up your [rflink hub](/components/rflink/).
|
||||
|
||||
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.
|
||||
After configuring the RFLink hub covers will be automatically discovered and added. Except the Somfy RTS devices.
|
||||
|
||||
RFLink switch/light/cover ID's are composed of: protocol, id, switch. For example: `newkaku_0000c6c2_1`.
|
||||
### {% setting up a Somfy RTS device%}
|
||||
|
||||
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.
|
||||
You have to add the Somfy RTS manually with the supplied RFlinkLoader (Windows only).
|
||||
|
||||
To add RFLink to your installation, add the following to your Home Assistant `configuration.yaml` file:
|
||||
Press the Learn button on the original Somfy remote enter the following code within 3 seconds. Your blinds will go up and down shortly:
|
||||
|
||||
````
|
||||
10;RTS;02FFFF;0412;3;PAIR;
|
||||
````
|
||||
|
||||
Your blinds will go up and down again. This means your Rflink is now paired with your RTS motor.
|
||||
To check this enter the following code again and see if there is a record.
|
||||
|
||||
````
|
||||
10;RTSSHOW;
|
||||
````
|
||||
````
|
||||
RTS Record: 0 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 1 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 2 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 3 Address: 02FFFF RC: 0018
|
||||
RTS Record: 4 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 5 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 6 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 7 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 8 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 9 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 10 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 11 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 12 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 13 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 14 Address: FFFFFF RC: FFFF
|
||||
RTS Record: 15 Address: FFFFFF RC: FFFF
|
||||
````
|
||||
|
||||
After configuring the RFLink Somfy RTS you have to add the cover to the `configuration.yaml` file like any other RFlink device.
|
||||
|
||||
RFLink cover ID's are composed of: protocol, id, and gateway. For example: `RTS_0100F2_0`.
|
||||
|
||||
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.
|
||||
|
||||
Assigning a name to a cover:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
cover:
|
||||
platform: rflink
|
||||
device_defaults:
|
||||
fire_event: true
|
||||
signal_repetitions: 2
|
||||
devices:
|
||||
newkaku_0000c6c2_1:
|
||||
name: Ceiling fan
|
||||
conrad_00785c_0a:
|
||||
name: Motion sensor kitchen
|
||||
|
||||
- platform: rflink
|
||||
devices:
|
||||
RTS_0100F2_0:
|
||||
name: SunShade
|
||||
bofumotor_455201_0f:
|
||||
name: Sovrumsgardin
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **devices** (*Optional*): A list of devices with their name to use in the frontend.
|
||||
- **automatic_add** (*Optional*): Automatically add new/unconfigured devices to Home Assistant if detected (default: True).
|
||||
- **devices** (*Optional*): A list of devices with their name to use in the frontend.
|
||||
- **device_defaults**: (*Optional*)
|
||||
- **fire_event** (*Optional*): Set default `fire_event` for RFLink switch devices (see below).
|
||||
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below).
|
||||
- **fire_event** (*Optional*): Set default `fire_event` for Rflink switch devices (see below).
|
||||
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for Rflink switch devices (see below).
|
||||
|
||||
Device configuration variables:
|
||||
|
||||
- **name** (*Optional*): Name for the device, defaults to RFLink ID.
|
||||
- **aliases** (*Optional*): Alternative RFLink ID's this device is known by.
|
||||
- **name** (*Optional*): Name for the device, defaults to Rflink ID.
|
||||
- **aliases** (*Optional*): Alternative Rflink ID's this device is known by.
|
||||
- **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False).
|
||||
- **signal_repetitions** (*Optional*): Repeat every RFLink command this number of times (default: 1)
|
||||
- **group** (*Optional*): Allow switch to respond to group commands (ALLON/ALLOFF). (default: yes)
|
||||
- **signal_repetitions** (*Optional*): Repeat every Rflink command this number of times (default: 1).
|
||||
- **fire_event_** (*Optional*): Set default `fire_event` for RFLink switch devices (see below).
|
||||
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below).
|
||||
- **group** (*Optional*): Allow light to respond to group commands (ALLON/ALLOFF). (default: yes)
|
||||
- **group_aliases** (*Optional*): `aliases` which only respond to group commands.
|
||||
- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands.
|
||||
|
||||
|
||||
### {% linkable_title Device support %}
|
||||
|
||||
See [device support](/components/rflink/#device-support)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user