Avi-on


Support for the Avi-on Bluetooth dimmer switch Avi-on.

Setup

If you want to add your devices manually (like in the example below) then you need to get the API key. The API key can be obtained by executing the following command:

$ curl -X POST -H "Content-Type: application/json" \
    -d '{"email": "[email protected]", "password": "password"}' \
    https://api.avi-on.com/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.

Configuration

To enable these lights, add the following lines to your configuration.yaml file:

# Example configuration.yaml entry
light:
  - platform: avion

There are two ways to configure this integration: username & password, or list of devices. You must choose one.

Configuration Variables

username string (Optional)

The username used in the Avion app. If username and password are both provided, all associated switches will automatically be added to your configuration.

password string (Optional)

The password used in the Avion app.

devices list (Optional)

An optional list of devices with their Bluetooth addresses.

name string (Optional)

A custom name to use in the frontend.

api_key string Required

The API Key.

id string Required

The ID of the dimmer switch. Only needed for independent control of multiple devices.

Full example

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

For independent control of multiple devices, you must specify each device’s ID (integer starting with 1). Each switch’s ID can be guessed or detected from the Avi-on API.

# Manual device configuration.yaml entry
light:
  - platform: avion
    devices:
      00:21:4D:00:00:01:
        name: Light 1
        api_key: YOUR_API_KEY
        id: 1
      00:21:4D:00:00:02:
        name: Light 1
        api_key: YOUR_API_KEY
        id: 2