mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Add docs for LCN scenes platform (#9545)
This commit is contained in:
parent
845ce95d09
commit
e0b5bb0faf
@ -14,6 +14,7 @@ ha_category:
|
|||||||
- Climate
|
- Climate
|
||||||
- Cover
|
- Cover
|
||||||
- Light
|
- Light
|
||||||
|
- Scene
|
||||||
- Sensor
|
- Sensor
|
||||||
- Switch
|
- Switch
|
||||||
ha_release: 0.85
|
ha_release: 0.85
|
||||||
@ -35,6 +36,7 @@ There is currently support for the following device types within Home Assistant:
|
|||||||
- [Climate](#climate)
|
- [Climate](#climate)
|
||||||
- [Cover](#cover)
|
- [Cover](#cover)
|
||||||
- [Light](#light)
|
- [Light](#light)
|
||||||
|
- [Scene](#scene)
|
||||||
- [Sensor](#sensor)
|
- [Sensor](#sensor)
|
||||||
- [Switch](#switch)
|
- [Switch](#switch)
|
||||||
|
|
||||||
@ -86,6 +88,14 @@ lcn:
|
|||||||
dimmable: true
|
dimmable: true
|
||||||
transition: 5
|
transition: 5
|
||||||
|
|
||||||
|
scenes:
|
||||||
|
- name: Romantic
|
||||||
|
address: myhome.s0.m7
|
||||||
|
register: 1
|
||||||
|
scene: 4
|
||||||
|
outputs: [output1, output2, relais1, relais3, relais4]
|
||||||
|
transition: 5
|
||||||
|
|
||||||
sensors:
|
sensors:
|
||||||
- name: Temperature
|
- name: Temperature
|
||||||
address: myhome.s0.m7
|
address: myhome.s0.m7
|
||||||
@ -242,6 +252,37 @@ lights:
|
|||||||
type: int
|
type: int
|
||||||
default: 0
|
default: 0
|
||||||
|
|
||||||
|
scenes:
|
||||||
|
description: List of your scenes.
|
||||||
|
required: false
|
||||||
|
type: map
|
||||||
|
keys:
|
||||||
|
name:
|
||||||
|
description: "Name of the scene."
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
address:
|
||||||
|
description: "[Address](#lcn-addresses) of the module/group."
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
register:
|
||||||
|
description: Number of scene register (0..9).
|
||||||
|
required: true
|
||||||
|
type: int
|
||||||
|
scene:
|
||||||
|
description: Number of scene (0..9).
|
||||||
|
required: true
|
||||||
|
type: int
|
||||||
|
outputs:
|
||||||
|
description: "List of ports ([OUTPUT_PORT](#ports), [RELAY_PORT](#ports))."
|
||||||
|
required: false
|
||||||
|
type: list
|
||||||
|
transition:
|
||||||
|
description: Transition (ramp) time in seconds.
|
||||||
|
required: false
|
||||||
|
type: int
|
||||||
|
default: None
|
||||||
|
|
||||||
sensors:
|
sensors:
|
||||||
description: List of your sensors.
|
description: List of your sensors.
|
||||||
required: false
|
required: false
|
||||||
@ -398,6 +439,10 @@ The `lcn` light platform allows the control of the following [LCN](http://www.lc
|
|||||||
- (Dimmable) output ports
|
- (Dimmable) output ports
|
||||||
- Relays
|
- Relays
|
||||||
|
|
||||||
|
### {% linkable_title Scene %}
|
||||||
|
|
||||||
|
The `lcn` scene platform allows the activation of previously programmed [LCN](http://www.lcn.eu) scenes.
|
||||||
|
|
||||||
### {% linkable_title Sensor %}
|
### {% linkable_title Sensor %}
|
||||||
|
|
||||||
The `lcn` sensor platform allows the monitoring of the following [LCN](http://www.lcn.eu) data sources:
|
The `lcn` sensor platform allows the monitoring of the following [LCN](http://www.lcn.eu) data sources:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user