mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-02 00:06:49 +00:00

* Standardized values in the example configuration Removed what appear to be an actual API key from the example configuration.yaml block. And, replaced with values as described in the [developer docs](https://developers.home-assistant.io/docs/en/documentation_standards.html#component-and-platform-pages) * Standardize example configuration-ecobee * Standardize example configuration-coinbase * Standardize example configuration-google assistant * Standardize example configuration-cloudflare * Standardize example configuration-cloudflare * Standardize example configuration-habitica * Standardize example configuration-ifttt * Standardize example configuration-openalpr * Standardize example configuration-multiple * Standardize example configuration-instapush * Standardize example configuration-llamalab * Standardize example configuration-notify * Standardize example configuration-mailgun * Standardize example configuration-MULTIPLE * Standardize example configuration-rtm * Standardize example configuration-spotcrime * Standardize example configuration-trafikverket * Standardize example configuration-uk transport * Standardize example configuration-wunderground * Standardize example configuration-wsdot * Standardize example configuration-telegram * Standardize example configuration-tts * Standardize example configuration-tts, vultr * Replace email entry * Replace IP address * Place email address
1.7 KiB
1.7 KiB
layout, title, description, date, sidebar, comments, sharing, footer, ha_category, ha_iot_class, logo, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | ha_category | ha_iot_class | logo | ha_release |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Avi-on | Instructions on how to setup GE Avi-on Bluetooth dimmers within Home Assistant. | 2017-01-17 23:17 | true | false | true | true | Light | Assumed State | avi-on.png | 0.37 |
Support for the Avi-on Bluetooth dimmer switch Avi-On.
To enable these lights, add the following lines to your configuration.yaml
file:
# Example configuration.yaml entry
light:
- platform: avion
Configuration variables:
- username (Optional): The username used in the Avion app. If username and password are both provided, any associated switches will automatically be added to your configuration.
- password (Optional): The password used in the Avion app.
- devices (Optional): An optional list of devices with their Bluetooth address, a custom name to use in the frontend and the API key. The API key can be obtained by executing the following command:
curl -X POST -H "Content-Type: application/json" -d '{"email": "fakename@example.com", "password": "password"}' https://admin.avi-on.com/api/sessions | jq
with the email and password fields replaced with those used when registering the device via the mobile app. The pass phrase field of the output should be used as the API key in the configuration.
If username and password are not supplied, devices must be configured manually like so:
# Manual device configuration.yaml entry
light:
- platform: avion
devices:
00:21:4D:00:00:01:
name: Light 1
api_key: YOUR_API_KEY
00:21:3D:20:00:a1:
name: Light 2
api_key: YOUR_API_KEY