Interact with and control Vantage InFusion home automation controllers.
Project description
aiovantage
aiovantage is a Python library for interacting with and controlling Vantage InFusion home automation controllers.
Uses a "controller" pattern inspired heavily by the aiohue library.
This open-source, non-commercial library is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Vantage, and is provided for interoperability purposes only.
Example
from aiovantage import Vantage
async with Vantage("192.168.1.2", "username", "password") as vantage:
async for load in vantage.loads:
print(f"{load.name} is at {load.level}%")
See the examples folder for more examples.
Features
- Uses Python asyncio for non-blocking I/O.
- Exposes "controllers" to make fetching and controlling various objects easy.
- Uses SSL connections by default, with automatic reconnection.
- Fetch objects lazily (with
async for obj in controller
). - Alternatively, eager-fetch objects with
controller.initialize
.
Supported objects types
The following interfaces/controllers are currently supported.
Type | Description | Controller | Examples |
---|---|---|---|
Area | Rooms, etc | vantage.areas |
Examples |
Blind | Shades, blinds | vantage.blinds |
Examples |
BlindGroups | Groups of blinds | vantage.blind_groups |
Examples |
Buttons | Keypad buttons | vantage.buttons |
Examples |
DryContacts | Motion sensors, etc | vantage.dry_contacts |
Examples |
GMem | Vantage variables | vantage.gmem |
Examples |
Load | Lights, relays, etc | vantage.loads |
Examples |
LoadGroup | Groups of loads | vantage.load_groups |
Examples |
OmniSensor | Power, current, etc | vantage.omni_sensors |
Examples |
RGBLoad | RGB lights | vantage.rgb_loads |
Examples |
Stations | Keypads, etc | vantage.stations |
Examples |
Tasks | Vantage tasks | vantage.tasks |
Examples |
If you have an object that you expect to show up in one of these controllers, but it is missing, please let me know in an issue.
Installation
pip3 install aiovantage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aiovantage-0.2.3.tar.gz
.
File metadata
- Download URL: aiovantage-0.2.3.tar.gz
- Upload date:
- Size: 42.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e4c4ce1c2ec5316d74b7b3b46b98d8072c5b4b9b98f9e84fe8565d19399cce0 |
|
MD5 | 44d25e2133a963d32df8e88d4d9183b7 |
|
BLAKE2b-256 | 61ea50758e85abaeb47ffa166b43a224618ea72cfa814ef9838597a0c2d0ad48 |
File details
Details for the file aiovantage-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: aiovantage-0.2.3-py3-none-any.whl
- Upload date:
- Size: 69.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ad7e76938c47bd2a2f8c5d40046c023e3671a1d27f29c6fec991b62c84db875 |
|
MD5 | ca94fe30f84db177c02f68ecea9d5eaf |
|
BLAKE2b-256 | b2c546b93b1549253a84b0c9a02d79dc019eda107282c1361c4dcb1d8fd3c434 |