mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 08:16:53 +00:00
parent
0da1ee9f55
commit
8208143432
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: "Orvibo Switch"
|
title: "Orvibo Switch"
|
||||||
description: "Instructions how to integrate Orvibo switches within Home Assistant."
|
description: "Instructions how to integrate Orvibo sockets within Home Assistant."
|
||||||
date: 2015-11-15 18:15
|
date: 2015-11-15 18:15
|
||||||
sidebar: true
|
sidebar: true
|
||||||
comments: false
|
comments: false
|
||||||
@ -11,20 +11,32 @@ logo: orvibo.png
|
|||||||
ha_category: Switch
|
ha_category: Switch
|
||||||
---
|
---
|
||||||
|
|
||||||
The `orvibo` switch platform allows you to toggle your Orvibo S20 Wifi Smart Switch.
|
The `orvibo` switch platform allows you to toggle your Orvibo S20 Wifi Smart Sockets.
|
||||||
|
|
||||||
To use your Orvibo switch in your installation, add the following to your `configuration.yaml` file:
|
To automatically discover Orvibo sockets on your network:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
|
||||||
switch:
|
switch:
|
||||||
platform: orvibo
|
platform: orvibo
|
||||||
host: IP_ADDRESS
|
```
|
||||||
|
|
||||||
|
To specify Orvibo sockets and skip discovery:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
switch:
|
||||||
|
platform: orvibo
|
||||||
|
discovery: false
|
||||||
|
switches:
|
||||||
|
- host: IP_ADDRESS
|
||||||
mac: MA:CA:DD:RE:SS:00
|
mac: MA:CA:DD:RE:SS:00
|
||||||
|
name: "My Socket"
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **host** (*Required*): IP address of your switch, eg. 192.168.1.10.
|
- **discovery** (*Optional*): Whether to discover sockets (default true).
|
||||||
- **mac** (*Optional*): MAC address of the switch, eg "AA:BB:CC:DD:EE:FF". This is required if the switch is connected to a different subnet to the machine running Home Assistant
|
- **switches** (*Optional*):
|
||||||
|
- **host** (*Required*): IP address of your socket, eg. 192.168.1.10.
|
||||||
|
- **mac** (*Optional*): MAC address of the socket, eg "AA:BB:CC:DD:EE:FF". This is required if the socket is connected to a different subnet to the machine running Home Assistant
|
||||||
|
- **name** (*Optional*): Your name for the socket.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user