From 3051bbe7fa7671a6ad5b1ffa9eac169fb108d2b0 Mon Sep 17 00:00:00 2001 From: Daniel Perna Date: Tue, 28 Jun 2016 23:10:32 +0200 Subject: [PATCH] Delete switch.homematic.markdown We switched to full autodetect + customization. Platform-configuration now obsolete. --- source/_components/switch.homematic.markdown | 54 -------------------- 1 file changed, 54 deletions(-) delete mode 100644 source/_components/switch.homematic.markdown diff --git a/source/_components/switch.homematic.markdown b/source/_components/switch.homematic.markdown deleted file mode 100644 index 25c7afe2877..00000000000 --- a/source/_components/switch.homematic.markdown +++ /dev/null @@ -1,54 +0,0 @@ ---- -layout: page -title: "Homematic Switch" -description: "Instructions how to integrate Homematic switches within Home Assistant." -date: 2016-06-25 12:24 -sidebar: true -comments: false -sharing: true -footer: true -logo: homematic.png -ha_category: Switch -ha_release: 0.23 -ha_iot_class: "Local Push" ---- - - -The `homematic` switch platform lets you control [Homematic](http://www.homematic.com/) switches through Home Assistant. -If the switch uses multiple channels to control different devices, you may setup multiple Home Assistant entities. Switches may also be configured as light entities if you have lights attatched to them. Besides that, there a switches that have included sensors, which may also be configured as separate HA entities. - -To set it up, add the following information to your `configuration.yaml` file: - -```yaml -switch: - platform: homematic - address: LEQ1234567 - name: Dishwasher - 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 with powermeter - -As an example for a HM-ES-PMSw1-DR switch with powermeter sensors: - -```yaml -switch: - - platform: homematic - address: LEQ1234657 - name: Dishwascher -sensor: - - platform: homematic - address: LEQ1234657 - name: Dishwascher Power - param: POWER -```