Skip to main content

API helper for Advantage Air's MyAir and e-zone API

Project description

Advantage Air API Wrapper

Get

Returns the current state of all components.

async_get()

Set

Change attributes by sending the updated values to the relevant endpoint.

aircon.async_update_ac(ac: str, data: dict)

Update values on the AC system

aircon.async_update_zone(ac: str, zone: str, data: dict)

Update values on a specific zone

lights.async_update_state(id: str, state: str|bool)

Update the state of a light. off|false = off, on|true = on

lights.async_update_value(id: str, value: int)

Update the brightness of a light, and assumes 0 is off.

things.async_update_value(id: str, value : int|bool)

Update the value of a thing. 0|false = off, 100|true = on

*.async_update(data: dict)

Directly update with data to the endpoint.

Example

import asyncio
import aiohttp
from advantage_air import advantage_air


async def main():
    async with aiohttp.ClientSession() as session:
        aa = advantage_air("192.168.1.24", port=2025, session=session, retry=5)
        if data := await aa.async_get(1):
            print(data)
            aa.aircon.async_update_ac("ac1",{"state": "on"})
            await asyncio.gather(
                aa.aircon.async_update_zone("ac1","z01", {"value": 25}),
                aa.aircon.async_update_zone("ac1","z02", {"value": 50}),
            )

asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

advantage_air-0.4.4.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

advantage_air-0.4.4-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page