Delete switch.homematic.markdown

We switched to full autodetect + customization. Platform-configuration now obsolete.
This commit is contained in:
Daniel Perna 2016-06-28 23:10:32 +02:00 committed by GitHub
parent c49f8adbed
commit 3051bbe7fa

View File

@ -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
```