mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-24 19:16:50 +00:00
45 lines
926 B
Markdown
45 lines
926 B
Markdown
---
|
|
title: "Ankuoo Rec Switch"
|
|
description: "Instructions on how to integrate Ankuoo Rec Switch into Home Assistant."
|
|
logo: "ankuoo_recswitch.png"
|
|
ha_release: 0.81
|
|
ha_category:
|
|
- Switch
|
|
ha_iot_class: Local Polling
|
|
---
|
|
|
|
The `recswitch` switch platform allows you to control the Ankuoo Rec Switch devices.
|
|
|
|
Supported devices (tested):
|
|
|
|
- Ankuoo RecSwitch MS6126
|
|
- Lumitek CSW201 NEO WiFi
|
|
- MALMBERGS CSW201
|
|
|
|
## Configuration
|
|
|
|
To enable this switch, add the following lines to your `configuration.yaml`:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
switch:
|
|
- platform: recswitch
|
|
host: 'IP_ADDRESS'
|
|
mac: 'MAC_ADDRESS'
|
|
```
|
|
|
|
{% configuration %}
|
|
host:
|
|
description: IP address or hostname of the device.
|
|
required: true
|
|
type: string
|
|
mac:
|
|
description: MAC address of the device.
|
|
required: true
|
|
type: string
|
|
name:
|
|
description: Name to use in the frontend.
|
|
required: false
|
|
type: string
|
|
{% endconfiguration %}
|