Update homematic add-on component configuration (#7533)

This commit is contained in:
Klaas Schoute 2018-11-16 08:53:58 +01:00 committed by Fabian Affolter
parent aedcafc0d9
commit a8cbc29b0b

View File

@ -45,26 +45,63 @@ Follow devices will be supported and tested:
}
```
Configuration variables:
- **rf_enable** (*Required*): Boolean. Enable or disable BidCoS-RF.
- **wired_enable** (*Required*): Boolean. Enable or disable BidCoS-Wired.
For RF devices:
- **type** (*Required*): Device type for RFD service. Look into the manual of your device.
- **device** (*Required*): Device on the host.
For wired devices:
- **serial** (*Required*): Serial number of the device.
- **key** (*Required*): Encrypted key.
- **ip** (*Required*): IP address of LAN gateway.
For HmIP devices:
- **type** (*Required*): Device type for RFD service. Look into the manual of your device.
- **device** (*Required*): Device on the host.
{% configuration %}
rf_enable:
description: Enable or disable BidCoS-RF.
required: true
type: boolean
rf:
description: RF devices.
required: true
type: list
keys:
type:
description: Device type for RFD service. Look into the manual of your device.
required: true
type: string
device:
description: Device on the host.
required: true
type: string
wired_enable:
description: Enable or disable BidCoS-Wired.
required: true
type: boolean
wired:
description: Wired devices.
required: true
type: list
keys:
serial:
description: Serial number of the device.
required: true
type: string
key:
description: Encrypted key.
required: true
type: string
ip:
description: IP address of LAN gateway.
required: true
type: string
hmip_enable:
description: Enable or disable hmip.
required: true
type: boolean
hmip:
description: HMIP devices.
required: true
type: list
keys:
type:
description: Device type for RFD service. Look into the manual of your device.
required: true
type: string
device:
description: Device on the host.
required: true
type: string
{% endconfiguration %}
## {% linkable_title Home Assistant configuration %}