mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-26 02:37:03 +00:00
Minor update
This commit is contained in:
parent
451949a198
commit
1f75907e4c
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: "KNX Switches"
|
title: "KNX Switch"
|
||||||
description: "Instructions on how to integrate KXN switches with Home Assistant."
|
description: "Instructions on how to integrate KXN switches with Home Assistant."
|
||||||
date: 2016-06-24 12:00
|
date: 2016-06-24 12:00
|
||||||
sidebar: true
|
sidebar: true
|
||||||
@ -13,11 +13,13 @@ ha_release: 0.24
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The KNX switch component is used as in interface to switching actuators.
|
The `knx` switch component is used as in interface to switching actuators.
|
||||||
|
|
||||||
|
To use your KNX switch in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
switch:
|
switch:
|
||||||
platform: knx
|
- platform: knx
|
||||||
name: KNX Switch
|
name: KNX Switch
|
||||||
address: 0/0/1
|
address: 0/0/1
|
||||||
state_address: 0/0/3
|
state_address: 0/0/3
|
||||||
@ -25,5 +27,6 @@ switch:
|
|||||||
|
|
||||||
- **name** (*Optional*): A name for this devices used within Home assistant
|
- **name** (*Optional*): A name for this devices used within Home assistant
|
||||||
- **address** (*Required*): The KNX group address that is used to turn on/off this actuator channel
|
- **address** (*Required*): The KNX group address that is used to turn on/off this actuator channel
|
||||||
- **state_address** (*Optional*): Some KNX devices can change their state internally without any messages on the KXN bus, e.g. if you configure a timer on a channel. The optional state_address can be used to inform Home assistant about these state changes. If a KNX message is seen on the bus addressed to the given state address, this wil overwrite the state of the switch object.
|
- **state_address** (*Optional*): Some KNX devices can change their state internally without any messages on the KXN bus, e.g. if you configure a timer on a channel. The optional `state_address` can be used to inform Home Assistant about these state changes. If a KNX message is seen on the bus addressed to the given state address, this wil overwrite the state of the switch object.
|
||||||
For switching actuators that are only controlled by a single group address and can't change their state internally, you don't have to configrue the state address
|
For switching actuators that are only controlled by a single group address and can't change their state internally, you don't have to configrue the state address.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: "KNX Thermostats"
|
title: "KNX Thermostat"
|
||||||
description: "Instructions on how to integrate KXN thermostats with Home Assistant."
|
description: "Instructions on how to integrate KXN thermostats with Home Assistant."
|
||||||
date: 2016-06-24 12:00
|
date: 2016-06-24 12:00
|
||||||
sidebar: true
|
sidebar: true
|
||||||
@ -13,13 +13,15 @@ ha_release: 0.25
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The KNX thermostat component is used as in interface with KNX thermostats.
|
The `knx` thermostat platform is used as in interface with KNX thermostats.
|
||||||
|
|
||||||
KNX thermostats use at least 2 group addresses: one for the current temperature and one for the target temperature (named set-point in KNX terms).
|
KNX thermostats use at least 2 group addresses: one for the current temperature and one for the target temperature (named set-point in KNX terms).
|
||||||
|
|
||||||
|
To use your KNX thermostats in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
thermostat:
|
thermostat:
|
||||||
platform: knx
|
- platform: knx
|
||||||
name: KNX Thermostat
|
name: KNX Thermostat
|
||||||
temperature_address: 0/1/1
|
temperature_address: 0/1/1
|
||||||
setpoint_address: 0/1/0
|
setpoint_address: 0/1/0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user