A library to pilot hitachi aircloud AC
Project description
aircloudy
Aircloudy is an unofficial python library that allow management of RAC (Room Air Conditioner) compatible with Hitachi Air Cloud.
This project IS NOT endorsed by Hitachi and is distributed as-is without warranty.
Table of Contents
Installation
pip install aircloudy
Usage
import asyncio
from typing import Tuple, Optional
from aircloudy import HitachiAirCloud, InteriorUnit, compute_interior_unit_diff_description
def print_changes(dict: dict[int, Tuple[Optional[InteriorUnit], Optional[InteriorUnit]]]) -> None:
for (id, change) in dict.items():
print(f"Change on interior unit {id}: "+compute_interior_unit_diff_description(change[0], change[1]))
async def main() -> None:
async with HitachiAirCloud("your@email.com", "top_secret") as ac:
ac.on_change = print_changes
unit_bureau = next((iu for iu in ac.interior_units if iu.name == "Bureau"), None)
if unit_bureau is None:
raise Exception("No unit named `Bureau`")
await ac.set_power(unit_bureau, "ON")
await ac.set(unit_bureau.copy(requested_temperature=21, fan_speed="LV3"))
await asyncio.sleep(30)
asyncio.run(main())
License
aircloudy
is distributed under modified HL3 license. See LICENSE.txt
.
Development
poetry run task lint
poetry run task check
poetry run task test
poetry run task coverage
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
aircloudy-0.1.4.tar.gz
(45.6 kB
view details)
Built Distribution
aircloudy-0.1.4-py3-none-any.whl
(27.2 kB
view details)
File details
Details for the file aircloudy-0.1.4.tar.gz
.
File metadata
- Download URL: aircloudy-0.1.4.tar.gz
- Upload date:
- Size: 45.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.2 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ea596809545fcabc2e803d8aaa2a8c67e6f0edeea3805c9754da575114e4cb7 |
|
MD5 | a3c1eac01186b9ca2aa2b9696c3d9dc4 |
|
BLAKE2b-256 | 61ff5a65380ace34518c05f692edf9c7dc7eef7e12c8f3ba34444add610c3007 |
File details
Details for the file aircloudy-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: aircloudy-0.1.4-py3-none-any.whl
- Upload date:
- Size: 27.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.2 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2962409721ce997ed0d5e865414ef1dea1c0f21987bb07339bf52f3fe2a88a69 |
|
MD5 | a991d7fb1dbd72e43e1aa863c68b112c |
|
BLAKE2b-256 | 09533853ea43eb7865f166adebef61c16533b0130d70c1cc217e10c1b5186a94 |