This is Home Assistant's an integration for PHINX Aqua Temp / HiTemp compatible heat pumps. It allows controlling temperature, HVAC mode (heat, cool, auto, off) and fan mode (low, auto). It also reports all parameters available in sensors and sensors.
AquaTemp's cloud protocol is based on aquatemp project with additional functionality.
Account for AquaTemp / HiTemp
Aqua Temp / Hi Temp introduced in v1.5.9 single login "feature" by default, meaning, only one device can be logged in, Following a recommendation from @dodg3r & @kopierschnitte, you can avoid it by creating additional account and sharing the device with that new account.
Requires complete deletion of integration and reinstall after restart HA
- In HACS, look for "Aqua Temp" and install and restart
- If integration was not found, please add custom repository
radical-squared/aquatemp
as integration - In Settings --> Devices & Services - (Lower Right) "Add Integration"
To add integration use Configuration -> Integrations -> Add Aqua Temp
Integration supports multiple accounts and devices
Fields name | Type | Required | Default | Description |
---|---|---|---|---|
Username | Textbox | + | - | Username of account |
Password | Textbox | + | - | Password of account |
API Type | Dropdown | + | Aqua Temp (=<1.5.8) | API type (where the account was created), available values: Aqua Temp, HiTemp, Aqua Temp (=<1.5.8) |
Errors |
---|
Invalid credentials (403) |
Device scheme is according to data from the API
{
"identifiers": ["aqua_temp", "{DEVICE ID}"],
"name": "{DEVICE NICK NAME or DEVICE CODE}",
"device_type": "{DEVICE TYPE}"
}
Per device the following components will be generated by default:
Entity Name | Parameter | Platform | Protocol Code? |
---|---|---|---|
{HA Device Name} Temperature Unit | temperature_unit | select | False |
{HA Device Name} Fault | is_fault | binary_sensor | False |
{HA Device Name} Status | device_status | binary_sensor | False |
{HA Device Name} API Status | api_status | binary_sensor | False |
Additional components are according to following mapping:
Device's Product ID | Parameter |
---|---|
Default | JSON |
Hitemp 1245226668902080512 | JSON |
AquaTemp 1442284873216843776 | JSON |
- Python 3.10
- Python virtual environment
- Install all dependencies, using
pip install -r requirements.txt
command
Environment Variable | Type | Default | Description |
---|---|---|---|
Username | String | - | Username used for Aqua Temp |
Password | String | - | Password used for Aqua Temp |
DEBUG | Boolean | False | Setting to True will present DEBUG log level message while testing the code, False will set the minimum log level to INFO |
Run file located in tests/main.py
Before opening an issue, please provide logs related to the issue, For debug log level, please add the following to your config.yaml
logger:
default: warning
logs:
custom_components.aqua_temp: debug
Or use the HA capability in device page: Settings -> Devices & Services -> Aqua Temp -> 3 dots menu -> Enable debug logging When done and would like to extract the log: Settings -> Devices & Services -> Aqua Temp -> 3 dots menu -> Disable debug logging
Please attach also diagnostic details of the integration, available in: Settings -> Devices & Services -> Aqua Temp -> 3 dots menu -> Download diagnostics
If mapping for your device are incorrect, please follow the steps below before reporting an issue:
- Install on your mobile device packet sniffer (I'm using for Android - NetCapture)
- Activate the packet sniffer just for the app
- Open the app
- Login
- Open relevant device
- Open menu
- Click on
Parameter Settings
- First cycle, use password for user parameters, code:
022
- Take screenshot of each screen (letter)
- Repeat steps 8 & 9 with code
066
- factory parameters - Open packet sniffer app and extract requests (and responses) of
login
,deviceList
,getDataByCode
Attach the following details to issue:
- Mobile App name and version
- Attach screenshots and logs as zip file or link for download
- Attach diagnostic details from HA integration
In case you have referenced to that section, something went wrong with the encryption key,
Encryption key should be located in .storage/aqua_temp.config.json
file under data.key
property,
below are the steps to solve that issue.
Please report as issue
Example:
{
"version": 1,
"minor_version": 1,
"key": "aqua_temp.config.json",
"data": {
"key": "ox-qQsAiHb67Kz3ypxY19uU2_YwVcSjvdbaBVHZJQFY="
}
}
OR
{
"version": 1,
"minor_version": 1,
"key": "aqua_temp.config.json",
"data": {
"key": "ox-qQsAiHb67Kz3ypxY19uU2_YwVcSjvdbaBVHZJQFY="
}
}
- Remove the integration
- Delete the file
- Restart HA
- Try to re-add the integration
- If still happens - report as issue
Example:
{
"version": 1,
"minor_version": 1,
"key": "aqua_temp.config.json",
"data": {
"b8fa11c50331d2647b8aa7e37935efeb": {
"key": "ox-qQsAiHb67Kz3ypxY19uU2_YwVcSjvdbaBVHZJQFY="
}
}
}
- Move the
key
to the root of the JSON - Restart HA
- Try to re-add the integration
- If still happens - follow instructions of section #1 (i.)
Join our community in Discord