From 8fc49d7290b6cadf6670f3f7d5b4bf1839f56f11 Mon Sep 17 00:00:00 2001 From: Daniel Perna Date: Tue, 28 Jun 2016 23:09:14 +0200 Subject: [PATCH] Delete light.homematic.markdown We switched to full autodetect + customization. Platform-configuration now obsolete. --- source/_components/light.homematic.markdown | 54 --------------------- 1 file changed, 54 deletions(-) delete mode 100644 source/_components/light.homematic.markdown diff --git a/source/_components/light.homematic.markdown b/source/_components/light.homematic.markdown deleted file mode 100644 index 99a301672af..00000000000 --- a/source/_components/light.homematic.markdown +++ /dev/null @@ -1,54 +0,0 @@ ---- -layout: page -title: "Homematic Light" -description: "Instructions how to integrate Homematic lights within Home Assistant." -date: 2016-06-25 12:10 -sidebar: true -comments: false -sharing: true -footer: true -logo: homematic.png -ha_category: Light -ha_release: 0.23 -ha_iot_class: "Local Push" ---- - - -The `homematic` light platform lets you control [Homematic](http://www.homematic.com/) lights through Home Assistant. -You have the choice to configure switch-devices as light entities within Home Assistant if you have lights attatched to the switch and it makes sense for your setup. If the switch uses multiple channels to control different devices, you may mix the configurations. - -To set it up, add the following information to your `configuration.yaml` file: - -```yaml -light: - platform: homematic - address: LEQ1234567 - name: Kitchen - button: 1 -``` - -Configuration variables: - -- **address** (*Required*): The serial number of the device, eg. LEQ1234567 -- **name** (*Optional*): Name to identify the device. -- **button** (*Optional*): Channel of the Homematic interface to interact with. Defaults to 1. - -Currently the following devices are supported: -- Switch from 1 to 4 channels -- Dimmer from 1 to 2 channels -- Switch powermeter - -As an example for a mixed configuration of a HM-LC-Sw2-FM actor: - -```yaml -light: - platform: homematic - address: LEQ1234567 - name: Livingroom - button: 1 -switch: - platform: homematic - address: LEQ1234567 - name: Ceiling fan - button: 2 -```