mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 09:17:06 +00:00
Merge remote-tracking branch 'origin/next'
This commit is contained in:
commit
42beffdea7
@ -27,6 +27,7 @@ media_player:
|
||||
name: Kodi
|
||||
user: USERNAME
|
||||
password: PASSWORD
|
||||
turn_off_action: shutdown
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
@ -36,3 +37,4 @@ Configuration variables:
|
||||
- **name** (*Optional*): The name of the device used in the frontend.
|
||||
- **username** (*Optional*): The XBMC/Kodi HTTP username.
|
||||
- **password** (*Optional*): The XBMC/Kodi HTTP password.
|
||||
- **turn_off_action** (*Optional*): The desired turn off action. Options are `none`, `quit`, `hibernate`, `suspend`, `reboot`, or `poweroff`. Default `none`.
|
||||
|
@ -2,7 +2,7 @@
|
||||
layout: page
|
||||
title: "RFXtrx Rollershutter"
|
||||
description: "Instructions how to integrate RFXtrx roller shutters into Home Assistant."
|
||||
date: 2016-06-02 14:20
|
||||
date: 2016-06-02 22:10
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
@ -11,9 +11,12 @@ ha_category: Rollershutter
|
||||
ha_release: 0.21
|
||||
---
|
||||
|
||||
The `rfxtrx` platform support Siemens/LightwaveRF roller shutters that communicate in the frequency range of 433.92 MHz.
|
||||
The `rfxtrx` platform supports Siemens/LightwaveRF and RFY roller shutters that communicate in the frequency range of 433.92 MHz.
|
||||
|
||||
First you have to set up your [rfxtrx hub.](/components/rfxtrx/)
|
||||
|
||||
### {% linkable_title Configuration %}
|
||||
#####Siemens/LightwaveRF
|
||||
The easiest way to find your roller shutters is to add this to your `configuration.yaml`:
|
||||
|
||||
```yaml
|
||||
@ -35,7 +38,13 @@ rollershutter:
|
||||
name: device_name
|
||||
```
|
||||
|
||||
#####RFY
|
||||
The RFXtrx433e is required for RFY support, however it does not support receive for the RFY protocol - as such devices cannot be automatically added. Instead, configure the device in the [rfxmngr](http://www.rfxcom.com/downloads.htm) tool. Make a note of the assigned ID and Unit Code and then add a device to the configuration with the following id `071a0000[id][unit_code]`. Eg, if the id was `a` (`0a`) `00` `01`, and the unit code was `1` (`01`) then the fully qualified id would be `071a00000a000101`.
|
||||
|
||||
|
||||
#####Common
|
||||
Example configuration:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
rollershutter:
|
||||
@ -43,17 +52,16 @@ rollershutter:
|
||||
automatic_add: False
|
||||
signal_repetitions: 2
|
||||
devices:
|
||||
0b1100ce3213c7f210010f70:
|
||||
0b1100ce3213c7f210010f70: # Siemens/LightwaveRF
|
||||
name: Bedroom Shutter
|
||||
0b11000a02ef2gf210010f50:
|
||||
070a00000a000101: # RFY
|
||||
name: Bathroom Shutter
|
||||
0b1111e003af16aa10000060:
|
||||
name: Lounge Shutter
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **devices** (*Required*): A list of devices with their name to use in the frontend.
|
||||
- **automatic_add** (*Optional*): To enable the automatic addition of new roller shutters.
|
||||
- **automatic_add** (*Optional*): To enable the automatic addition of new roller shutters (Siemens/LightwaveRF only).
|
||||
- **signal_repetitions** *Optional*: Because the rxftrx device sends its actions via radio and from most receivers it's impossible to know if the signal was received or not. Therefore you can configure the roller shutter to try to send each signal repeatedly.
|
||||
- **fire_event** *Optional*: Fires an event even if the state is the same as before. Can be used for automations.
|
||||
|
||||
|
@ -24,6 +24,7 @@ sensor:
|
||||
secret_key: YOUR_SECRET_KEY
|
||||
username: YOUR_USERNAME
|
||||
password: YOUR_PASSWORD
|
||||
station: STATION_NAME
|
||||
modules:
|
||||
module_name1:
|
||||
- temperature
|
||||
@ -48,6 +49,7 @@ Configuration variables:
|
||||
- **secret_key** (*Required*): Your netatmo secret key
|
||||
- **username** (*Required*): Username for the netatmo account.
|
||||
- **password** (*Required*): Password for the netatmo account.
|
||||
- **station**: The name of the weather station. Needed if several stations are associated with the account.
|
||||
- **modules** (*Required*): Modules to use. Multiple entries allowed.
|
||||
- **module_name** array (*Required*): Name of the module.
|
||||
- **temperature**: Current temperature.
|
||||
|
@ -72,6 +72,7 @@ Configuration variables:
|
||||
|
||||
- **usb_path** (*Required*): The port where your device is connected to your Home Assistant host.
|
||||
- **config_path** (*Optional*): The path to the Python Open Z-Wave configuration files.
|
||||
- **autoheal** (*Optional*): Allows disabling auto ZWave heal at midnight. Defaults to True.
|
||||
- **polling_interval** (*Optional*): The time period in milliseconds between polls of a nodes value. Be careful about using polling values below 30000 (30 seconds) as polling can flood the zwave network and cause problems.
|
||||
- **customize** (*Optional*): This attribute contains node-specific override values:
|
||||
- **polling_intensity** (*Optional*): Enables polling of a value and sets the frequency of polling (0=none, 1=every time through the list, 2-every other time, etc). If not specified then your device will not be polled.
|
||||
|
Loading…
x
Reference in New Issue
Block a user