Skip to main content

PyAiraHome is a comprehensive Python library that provides both cloud-based and Bluetooth Low Energy (BLE) connectivity to Aira Home heat pump systems.

Project description

PyAiraHome

Status PyPi GitHub Issues GitHub Pull Requests GitHub License


PyAiraHome is a comprehensive Python library that provides both cloud-based and Bluetooth Low Energy (BLE) connectivity to Aira Home heat pump systems.

📝 Table of Contents

🧐 About

PyAiraHome is a comprehensive Python library that enables developers to access Aira Home devices. The library provides seamless integration with Aira's cloud infrastructure via secure gRPC services, enabling remote monitoring, control, and data retrieval from anywhere with internet connectivity. Additionally, it offers direct Bluetooth Low Energy (BLE) communication for local device interaction, better data coverage and complete with message encryption for secure data exchange.

PyAiraHome features an intuitive object-oriented API that supports both raw protobuf responses and convenient Python dictionaries, comprehensive error handling, and detailed type annotations.

🏁 Getting Started

These instructions will get you a copy of the project up and running on your local machine for development. If you prefer an already working system check AiraHome-Dashboard out.

Prerequisites

  • Internet connection - Required for cloud-based features and authentication
  • Bluetooth Low Energy (BLE) capability - Required for local device communication and full data coverage (ensure you're within range of your Aira Brain)

Installation

Install PyAiraHome directly from PyPI using pip:

$ pip install pyairahome

🎈 Usage

Quick Start

Here's a basic example showing cloud functionality:

from pyairahome import AiraHome

# Initialize the library
aira = AiraHome()

# Cloud authentication
aira.cloud.login_with_credentials("email@example.com", "password")

# Get device information
devices = aira.cloud.get_devices()
device_id = devices["devices"][0]["id"]["value"]
print(f"Found device: {device_id}")

# Get current device state
states = aira.cloud.get_states(device_id)
print(f"Current temperature: {states['heat_pump_states'][0]['current_hot_water_temperature']}")

Cloud API Examples

Authentication and Device Management

# Login with credentials
aira.cloud.login_with_credentials("email@example.com", "password")

# Alternative: Login with existing tokens
# aira.cloud.login_with_tokens("id_token", "access_token", "refresh_token")

# List all devices
devices = aira.cloud.get_devices()
print(f"Found {len(devices['devices'])} devices")

# Get detailed heatpump information
device_details = aira.cloud.get_heatpump_details(household_id)
print(f"DHW Tank Size: {device_details['heat_pump']['tank_size']}")

Monitoring and Control

# Get current device states
states = aira.cloud.get_states(device_id)
print(states)

# Send commands to device
from pyairahome.commands import Ping
for update in aira.cloud.run_command(device_id, Ping())
    print(f"Command status: {update}")

Bluetooth Low Energy (BLE) Examples

Device Discovery and Connection

# Discover nearby Aira devices
devices = aira.ble.discover(timeout=5)
print(f"Found {len(devices)} BLE devices")

# Connect to a specific device by UUID
connected = aira.ble.connect_uuid("your-device-uuid-here")
if connected:
    print("Successfully connected via BLE")

    # Get device configuration
    config = aira.ble.get_configuration()
    print(f"Device configuration: {config}")
else:
    print("Failed to connect")

Working with Raw vs Processed Data

# Get processed data (Python dictionaries)
devices = aira.cloud.get_devices(raw=False)  # Default
print(type(devices))  # <class 'dict'>

# Get raw protobuf data
devices_raw = aira.cloud.get_devices(raw=True)
print(type(devices_raw))  # <class 'pyairahome.device.v1.devices_pb2.GetDevicesResponse'>

Complete Example

from pyairahome import AiraHome
import time

# Initialize and authenticate
aira = AiraHome()
aira.cloud.login_with_credentials("email@example.com", "password")

# Get device information
devices = aira.cloud.get_devices()
if devices["devices"]:
    device_id = devices["devices"][0]["id"]["value"]
    print(f"Working with device: {device_id}")

    # Try BLE connection for enhanced data
    try:
        connected = aira.init_ble()
        if connected:
            print("BLE connection established - enhanced data available")
            additional = aira.ble.get_system_check_state()
            print(f"Additional system states: {additional}")
    except Exception as e:
        print(f"BLE connection failed: {e}")
        print("Continuing with cloud-only mode...")

    # Monitor device state
    states = aira.cloud.get_states(device_id)
    print(f"Device status: {states}")

else:
    print("No devices found")

Note: Replace "email@example.com" and "password" with your actual Aira Home credentials. For BLE functionality, ensure you're within range of your Aira Brain.

📋 Todo(s)

  • Implement BLE commands functionality
  • Tests...
  • Implement Solar cloud (and ble?) functionality
  • Replace short comments with more exhaustive ones
  • Create an actual documentation with more examples

Suggestions and contributions are welcome! Feel free to open an issue or pull request with your ideas.

🌐 Community

If you enjoy this project and want to connect with other users, we'd love to see you in our community. Come and join us at airausersforum.com!

☕ Support me

I created and currently mantain this project because I genuinely enjoy doing so. No need to tip — but if you’d still like to show some appreciation you can do it by clicking on the button below, thank you!

ko-fi

⚠️ Disclaimer

PyAiraHome is an independent, open-source software library developed for interacting with Aira Home heat pumps via their app gRPC APIs and Bluetooth Low Energy protocols. This project is not affiliated with, endorsed by, sponsored by, or associated with Aira Home or any of its subsidiaries, affiliates, or partners.

Important Legal Notice

  • 🔒 This project is not an official product of Aira Home
  • ⚖️ Use of this library does not imply any compatibility, support, or approval from Aira Home
  • 🏷️ All trademarks, service marks, and company names mentioned herein are the property of their respective owners
  • ⚠️ Use of this library is at your own risk - I'm not responsible for any damages, malfunctions, warranty voids, or issues arising from its use
  • 🛡️ This software is provided "AS IS" without warranty of any kind, express or implied
  • 🔍 No proprietary code, trade secrets, or copyrighted materials from Aira Home have been used in the development of this library.

By using this library, you acknowledge that you understand and accept these terms and any associated risks.

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

pyairahome-2.2.4.tar.gz (122.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyairahome-2.2.4-py3-none-any.whl (333.0 kB view details)

Uploaded Python 3

File details

Details for the file pyairahome-2.2.4.tar.gz.

File metadata

  • Download URL: pyairahome-2.2.4.tar.gz
  • Upload date:
  • Size: 122.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyairahome-2.2.4.tar.gz
Algorithm Hash digest
SHA256 251d5e9bad88a32abfe33a2a3cbe7ec6d7510afafe19315dae300286d35414ee
MD5 ed2543fc7b85756ea7a61d068e573ce8
BLAKE2b-256 18aa6ffbd8cbe6e24ce1239e38256de8c2b0566c4bd9c5b3995ba95dec8f924d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyairahome-2.2.4.tar.gz:

Publisher: python-publish.yml on Invy55/pyairahome

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyairahome-2.2.4-py3-none-any.whl.

File metadata

  • Download URL: pyairahome-2.2.4-py3-none-any.whl
  • Upload date:
  • Size: 333.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyairahome-2.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 87bc9d9b44782f8874453169aca942cc2e4ff0707f6ef8f94eb435adca006394
MD5 1525b47fe2d691dec0e2c02c4b3c65a9
BLAKE2b-256 4a8c80c67e14487976692296817a5f20315da50b1d316830d23ac1cbce3b6863

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyairahome-2.2.4-py3-none-any.whl:

Publisher: python-publish.yml on Invy55/pyairahome

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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