
* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
1.7 KiB
title, description, logo, ha_category, ha_release, redirect_from
title | description | logo | ha_category | ha_release | redirect_from | ||
---|---|---|---|---|---|---|---|
Orvibo Switch | Instructions on how to integrate Orvibo sockets within Home Assistant. | orvibo.png |
|
0.8 |
|
Please be aware that the product ORVIBO WIFI SMART SOCKET S20 (LGS-20) has been recalled by the European authorities due to safety concerns. For more information, please visit RAPEX information.
The orvibo
switch platform allows you to toggle your Orvibo S20 Wifi Smart Sockets.
To automatically discover Orvibo sockets on your network:
# Example configuration.yaml entry
switch:
- platform: orvibo
To specify Orvibo sockets and skip discovery:
# Example configuration.yaml entry
switch:
- platform: orvibo
discovery: false
switches:
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "My Socket"
{% configuration %}
discovery:
description: Whether to discover sockets.
required: false
default: true
type: boolean
switches:
description: A list of Orvibo switches.
required: false
type: list
keys:
host:
description: "IP address of your socket, e.g., 192.168.1.10."
required: true
type: string
mac:
description: "MAC address of the socket, e.g., AA:BB:CC:DD:EE:FF
. This is required if the socket is connected to a different subnet to the machine running Home Assistant."
required: false
type: string
name:
description: Your name for the socket.
required: false
default: Orvibo S20 Switch
type: string
{% endconfiguration %}