Skip to main content

A Python client library for A. O. Smith water heaters

Project description

py-aosmith

This is an API Client for A. O. Smith iCOMM-enabled water heaters. If you can control your water heater using the iCOMM mobile app (iOS/Android), then it should be compatible with this library.

Known Compatible Models

  • EE9-40R55DV
  • EE9-40H55DV
  • EE9-50R55DV
  • EE9-50H55DV
  • EE12-50R55DVF
  • EE12-50H55DVF
  • EE12-55H55DVF
  • HPS10-50H45DV
  • HPS10-66H45DV
  • HPS10-80H45DV
  • HPSX-50-DHPT
  • HPTS-50
  • HPTS-66
  • HPTS-80
  • HPV10-50H01DV
  • HPV10-66H01DV
  • HPV10-80H01DV

If your water heater is not working with this library, but it can be controlled using the iCOMM mobile app, please open an issue so that support can be added.

Similarly, if your water heater is working with this library, but is not listed here, please open an issue so it can be added to the list.

Installation

To install the latest release from PyPI, run pip3 install py-aosmith.

Quick Start

You will need a compatible water heater which is already connected to Wi-Fi and linked to your iCOMM account.

This example initializes the API client and gets a list of water heaters linked to the account. Then, for each water heater, it updates the setpoint to 120 degrees.

import asyncio

from py_aosmith import AOSmithAPIClient
from py_aosmith.models import OperationMode

async def main():
    # Initialize API client
    client = AOSmithAPIClient("myemail@example.com", "mypassword")

    # Get list of water heaters linked to the account
    devices = await client.get_devices()

    # Loop through the registered water heaters
    for device in devices:
        # Update the setpoint to 120 degrees
        await client.update_setpoint(device.junction_id, 120);

        # Set the operation mode to heat pump
        await client.update_mode(device.junction_id, OperationMode.HEAT_PUMP)

    await client.close()

asyncio.run(main())

API Documentation

Initialize API Client

AOSmithAPIClient(email, password)

Parameters

Parameter Description
email The email address for your iCOMM account
password The password for your iCOMM account

Return value

Returns an instance of AOSmithAPIClient which can be used to invoke the below methods.

Get List of Devices

await client.get_devices()

Gets a list of water heaters linked with the iCOMM account. May only include devices which are known to be compatible with this library.

If your water heater can be controlled in the iCOMM mobile app, but is not included in the return value of this method, please open an issue so that support can be added.

Parameters

None

Return value

[
    Device(
        brand='aosmith',
        model='HPTS-50 200 202172000',
        device_type=DeviceType.NEXT_GEN_HEAT_PUMP,
        dsn='xxxxxxxxxxxxxxx',
        junction_id='xxxxxxxxxxxxxxxxxx', # Unique ID needed to call the other API methods
        name='Water Heater', # Custom nickname assigned to your water heater in the mobile app
        serial='xxxxxxxxxxxxx',
        install_location='Basement', # Install location set in the mobile app
        supported_modes=[ # Available operation modes for your water heater
            SupportedOperationModeInfo(
                mode=OperationMode.HYBRID,      # Enum value of the mode (use this when calling update_mode)
                original_name='HYBRID',         # Original name of the mode as returned by the API
                has_day_selection=False,        # Whether the mode supports day selection
                supports_hot_water_plus=False   # Whether Hot Water+ can be used in this mode, if supported by the device
            ),
            SupportedOperationModeInfo(
                mode=OperationMode.HEAT_PUMP,
                original_name='HEAT_PUMP',
                has_day_selection=False,
                supports_hot_water_plus=False
            ),
            SupportedOperationModeInfo(
                mode=OperationMode.ELECTRIC,
                original_name='ELECTRIC',
                has_day_selection=True,
                supports_hot_water_plus=False
            ),
            SupportedOperationModeInfo(
                mode=OperationMode.VACATION,
                original_name='VACATION',
                has_day_selection=True,
                supports_hot_water_plus=False
            )
        ],
        supports_hot_water_plus=True, # Whether the device supports the Hot Water+ feature
        status=DeviceStatus(
            firmware_version='2.14', # Current installed firmware version
            is_online=True, # Whether the water heater is currently connected to the internet
            current_mode=OperationMode.HEAT_PUMP, # Current operation mode
            mode_change_pending=False, # Whether a mode change is currently in progress
            temperature_setpoint=145, # Current setpoint (target water temperature)
            temperature_setpoint_pending=False, # Whether a setpoint change is currently in progress
            temperature_setpoint_previous=145, # Previous setpoint
            temperature_setpoint_maximum=145, # Maximum setpoint (to increase this, manually adjust the setpoint using the buttons on the water heater)
            hot_water_status=80 # Current hot water availability as a percentage
            hot_water_plus_level=0 # Current Hot Water+ setting (range: 0-3, 0 = off, None = unsupported)
        )
    )
]

Update setpoint

await client.update_setpoint(junction_id, setpoint)

Updates the setpoint (target water temperature) of the water heater.

When using this method, the setpoint cannot be adjusted above the temperature_setpoint_maximum from the return value of get_devices(). To increase the maximum, manually adjust the setpoint using the buttons on the water heater.

Parameters

Parameter Description
junction_id Unique ID of the water heater, obtained from get_devices()
setpoint New target temperature to set

Return value

None

Update mode

await client.update_mode(junction_id, mode, days, hot_water_plus_level)

Sets the operation mode of the water heater. To determine the list of modes supported by your water heater, check supported_modes in the Device object returned by get_devices().

Parameters

Parameter Description
junction_id Unique ID of the water heater, obtained from get_devices()
mode New operation mode to set. Must be a member of the OperationMode enum and must be a supported mode from supported_modes.
days Optional. Number of days after which the device will automatically exit this mode. Only works for modes where has_day_selection from supported_modes is True.
hot_water_plus_level Optional. Set the level for the Hot Water+ feature from 0-3, if supported by the device and operation mode. If unsupported, an AOSmithInvalidParametersException will be raised.

Return value

None

Get energy use data

await client.get_energy_use_data(junction_id)

Gets energy use history data from the water heater.

Parameters

Parameter Description
junction_id Unique ID of the water heater, obtained from get_devices()

Return value

EnergyUseData(
    lifetime_kwh=234.309,
    history=[
        EnergyUseHistoryEntry(
            date='2023-12-09T04:00:00.000Z',
            energy_use_kwh=2.19
        ),
        EnergyUseHistoryEntry(
            date='2023-12-10T04:00:00.000Z',
            energy_use_kwh=3.786
        ),
        EnergyUseHistoryEntry(
            date='2023-12-11T04:00:00.000Z',
            energy_use_kwh=5.292
        ),
        # ...
    ]
)

Disclaimer

This project is not affiliated with or endorsed by A. O. Smith. This is not an official API, and it may stop working at any time without warning.

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

py_aosmith-1.0.18.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

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

py_aosmith-1.0.18-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file py_aosmith-1.0.18.tar.gz.

File metadata

  • Download URL: py_aosmith-1.0.18.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.14.4 Linux/7.0.8-1-cachyos

File hashes

Hashes for py_aosmith-1.0.18.tar.gz
Algorithm Hash digest
SHA256 96f1a533af802db42761a37771dcb84ee16979c42ba88629dbe431801ab20be9
MD5 30196e3000ab8b27406d23a41aa9a40c
BLAKE2b-256 2419019c2043aaabc2a47e555fc450802ae0edf7524532520d473a07778e7152

See more details on using hashes here.

File details

Details for the file py_aosmith-1.0.18-py3-none-any.whl.

File metadata

  • Download URL: py_aosmith-1.0.18-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.14.4 Linux/7.0.8-1-cachyos

File hashes

Hashes for py_aosmith-1.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 fb679cb1c8bd123a8fc7a967936a2a67cc4eb0e25dc1566cf65edec136815f2f
MD5 71c630355fc49a0d95c2a63bd1a6c196
BLAKE2b-256 7a25e222f03799d9ef381d640730cc8cee2f38df1e4a8eaffc44caa24cf4c60f

See more details on using hashes here.

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