1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# PyAtag
## Asynchronous library to control Atag One
Requires Python 3.x and uses asyncio and aiohttp.
```python
import asyncio
import logging
import aiohttp
from pyatag import AtagException, AtagOne
from pyatag.discovery import async_discover_atag
logging.basicConfig()
_LOGGER = logging.getLogger(__name__)
_LOGGER.setLevel(logging.DEBUG)
async def main():
"""Initialize session for main program."""
async with aiohttp.ClientSession() as session:
await run(session)
async def run(session):
"""Run example main program."""
atag_ip, atag_id = await async_discover_atag() # for auto discovery, requires access to UDP broadcast (hostnet)
atag = AtagOne(atag_ip, session)
try:
await atag.authorize()
await atag.update()
except AtagException as err:
_LOGGER.error(err)
return False
for sensor in atag.report:
_LOGGER.debug("%s = %s", sensor.name, sensor.state)
for attribute in dir(atag.climate):
_LOGGER.debug(
"atag.climate.%s = %s", attribute, getattr(atag.climate, attribute)
)
await atag.climate.set_preset_mode("manual")
await atag.climate.set_temp(11)
_LOGGER.debug(atag.report.report_time)
_LOGGER.debug(atag.dhw.temperature)
asyncio.run(main())
```
|