Ariston NET Remotethermo integration
Project description
Ariston NET remotethermo API
Thin integration is a side project which works only with 1 zone climate configured. It logs in to Ariston website (https://www.ariston-net.remotethermo.com) and fetches/sets data on that site. You are free to modify and distribute it. It is distributed 'as is' with no liability for possible damage. See also https://pypi.org/project/aristonremotethermo/ . This API is for Ariston NET, for Aqua Ariston NET refer to https://github.com/chomupashchuk/aquaariston-remotethermo-api .
Donations
If you like this app, please consider donating some sum to your local charity organizations or global organization like Red Cross. I don't mind receiving donations myself (you may conact me for more details if you want to), but please consider charity at first.
API and Home Assistant
API was created in order to be used by Home Assistant. Example of API use for Home Assistant can be found: https://github.com/chomupashchuk/ariston-remotethermo-home-assistant-v2
API slow nature
API connect to the website, which then connect via gateway to the boiler. The bus has problem handling high bandwidth and thus requests are sent after some specific periods of time. Periods were selected based on tests where not much of interfence was seen when using Ariston Net application or Google Home application or using https://www.ariston-net.remotethermo.com. Still interfences occaionally take place. It is normal to occasionally get connection errors due to devices chain involved.
AristonHandler was tested on and works with:
- Ariston Clas Evo
- Ariston Genus One with Ariston BCH cylinder
- Ariston Nimbus Flex
- Ariston Alteas One
Check which version to use
You may check possible support of your boiler by logging into https://www.ariston-net.remotethermo.com and if climate and water heater parts (like temperatures) are available on the home page, then the integration should potentially work with AristonHandler.
API use
API import
Install package:
pip install aristonremotethermo
Import class AristonHandler
:
from aristonremotethermo.ariston import AristonHandler
API dependencies
requests
- used for HTTPS requests towards https://www.ariston-net.remotethermo.com.
AristonHandler start communication
from aristonremotethermo.ariston import AristonHandler
ApiInstance = AristonHandler(
username='username',
password='password'
)
ApiInstance.start()
See help(AristonHandler)
on how to properly initiate API.
AristonHandler stop communication
ApiInstance.stop()
API properties
See help(AristonHandler)
.
AristonHandler change of data on remote server
ApiInstance.set_http_data(parameter1=value1,parameter2=value2,...)
Method sets values for specific parameter names (see property supported_sensors_set_values
from help(AristonHandler)
) on the remote server.
AristonHandler change of data example
ApiInstance.set_http_data(mode="winter",ch_mode="scheduled")
Version "2.0.14"
- heat pump support;
Version "2.0.12"
- INCOMPATIBLE CHANGES due to zones introduction. Input sensors are the same but the structure inside for zone sensors include additional "_zone1", "_zone2" ...;
Version "2.0.11"
- Some unknown energy use for DHW and CH (e.g. on some models that support 6 parameters "ch_energy + ch_energy_delta == ch_energy2" );
Version "2.0.10"
- Additional set of energy sensors (some models have both some have one);
Version "2.0.9"
- energy use fix;
Version "2.0.7"
- dhw flame fix;
Version "2.0.7"
- energy consumption sensors update;
- code refactoring;
Version "2.0.5"
- todayes energy consumption calculation;
Version "2.0.4"
- new energy use sensors;
- bug fixes
Version "2.0.1"
- multiple incompatible changes, reduced amount of supported functions due to changes in REST requests by Ariston;
Version "1.0.52"
- login fix;
Version "1.0.51"
- new sensors support;
Version "1.0.49"
- request handling update;
Version "1.0.48"
- Todays energy use sensor handling update;
Version "1.0.47"
- Multiple zones support;
Version "1.0.46"
- Revision align;
Version "1.0.44"
- Updated handling of parameter sensors;
- BREAKING CHANGE:
AquaAristonHandler
moved to 'https://pypi.org/project/aristonremotethermo/'.
Version "1.0.43"
- New sensors in Ariston integration for energy consumption today;
Version "1.0.41"
- Dedicated files per gateway;
Version "1.0.40"
- Multiple boilers under one account (gateway must be specified per each instance);
Version "1.0.38"
- Unsupported sensor detection attempt in Ariston integration;
Version "1.0.37"
- Cooling included in Ariston integration;
Version "1.0.35"
- Bug fixes;
Version "1.0.34"
- Economy temperature reporting in set values when economy mode is active;
Version "1.0.33"
- Read Plant ID property method included;
Version "1.0.32"
- Tweaks in supported parameters detection to avoid issues on specific configurations;
Version "1.0.31"
- Class method for reading the data is included;
Version "1.0.30"
- Callback function added to inform about values received from the server or status changed;
Version "1.0.29"
- Logging to console included;
- Lydos Hybrid maximum value update;
Version "1.0.28"
- CH Water temperature added in AristonHandler for supported models;
Version "1.0.27"
- Additional data stored in case of server errors;
Version "1.0.26"
- Fix error parsing for AristonHandler;
Version "1.0.25"
- Fix units of measurement setting;
Version "1.0.24"
- Availability handling update;
Version "1.0.23"
- Availability handling update;
Version "1.0.22"
- Night mode added;
Version "1.0.21"
- Fixing interation with Alteas One;
- CRITICAL: manual identification of Aqua Ariston boiler is required due to problem with automated identification;
Version "1.0.20"
- Lydos Hybrid included;
Version "1.0.19"
- Ariston added cooling pump statistics;
Version "1.0.18"
- Aqua Ariston fix issue with no sensors being provided;
Version "1.0.17"
- Storing of files fixed;
- New handling of required temperatures for Velis wifi;
Version "1.0.16"
- Setting of temperature modified for Velis Wifi;
Version "1.0.15"
- Setting of data fixed for AquaAristonHandler;
Version "1.0.14"
- Code cleanup;
Version "1.0.13"
- Code cleanup;
- Additional class for handling Velis is introduced;
Version "1.0.12"
- DHW and CH availability status update;
Version "1.0.11"
- Code cleanup;
Version "1.0.10"
- Folder creation handling for data store is updated;
Version "1.0.9"
- Change the way changed temperature is visualized;
Version "1.0.8"
- Change the way floats are compared in all places;
- More flexible data types are allowed in set_http_data method;
Version "1.0.7"
- Help annotations update;
Version "1.0.6"
- Changed algorithm to visualize temperatures when changing their values;
Version "1.0.5"
- Help update;
Version "1.0.4"
- Initial release;
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
Built Distribution
File details
Details for the file aristonremotethermo-2.0.14.tar.gz
.
File metadata
- Download URL: aristonremotethermo-2.0.14.tar.gz
- Upload date:
- Size: 23.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f92abe14a6e687d2ca05c940c4d869aec642df47442a5d5db9f0a59fdf7862a |
|
MD5 | 0106e3733614315140d0285037d2a470 |
|
BLAKE2b-256 | 1218a05b292d50e8269441b95bd2a159279f5e48b73703345e246c58da5f725f |
File details
Details for the file aristonremotethermo-2.0.14-py3-none-any.whl
.
File metadata
- Download URL: aristonremotethermo-2.0.14-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 678adccfc6207c7fa44f5c7cb12832bb6cd6d4ef2108988f83cdf3c4003eaef8 |
|
MD5 | cc2cb7e6c0ffd4bc901451c5f4863b35 |
|
BLAKE2b-256 | 7b114ca42dbd08c025fc6b63a50e5d8fea911786334e23f951433bc725ded66a |