Skip to content

Commit

Permalink
heat pump
Browse files Browse the repository at this point in the history
  • Loading branch information
chomupashchuk committed Sep 21, 2022
1 parent 35112f5 commit af5b4f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion custom_components/ariston/ariston.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class AristonHandler:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""

_VERSION = "2.0.12"
_VERSION = "2.0.14"

_ARISTON_URL = "https://www.ariston-net.remotethermo.com"

Expand Down Expand Up @@ -230,6 +230,7 @@ class AristonHandler:
_ARISTON_PAR_DHW_STORAGE_TEMP = "DhwStorageTemperature"
_ARISTON_PAR_DHW_COMFORT_TEMP = "DhwTimeProgComfortTemp"
_ARISTON_PAR_DHW_ECONOMY_TEMP = "DhwTimeProgEconomyTemp"
_ARISTON_PAR_HEAT_PUMP = 'IsHeatingPumpOn'

# Parameters in Android api within zone 0, mapping to parameter names
_MAP_ARISTON_ZONE_0_PARAMS = {
Expand All @@ -245,6 +246,7 @@ class AristonHandler:
_PARAM_DHW_COMFORT_TEMPERATURE: _ARISTON_PAR_DHW_COMFORT_TEMP,
_PARAM_DHW_ECONOMY_TEMPERATURE: _ARISTON_PAR_DHW_ECONOMY_TEMP,
_PARAM_DHW_STORAGE_TEMPERATURE: _ARISTON_PAR_DHW_STORAGE_TEMP,
_PARAM_HEAT_PUMP: _ARISTON_PAR_HEAT_PUMP,
}
# Parameters in Android api within zone 1, mapping to parameter names
_MAP_ARISTON_MULTIZONE_PARAMS = {
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ariston/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
PARAM_HOLIDAY_MODE: (BINARY_SENSOR_HOLIDAY_MODE, None, "mdi:island"),
PARAM_ONLINE: (BINARY_SENSOR_ONLINE, DEVICE_CLASS_CONNECTIVITY, None),
PARAM_FLAME: (BINARY_SENSOR_FLAME, None, "mdi:fire"),
PARAM_HEAT_PUMP: (BINARY_SENSOR_HEAT_PUMP, DEVICE_CLASS_HEAT, None),
PARAM_HEAT_PUMP: (BINARY_SENSOR_HEAT_PUMP, None, "mdi:fan"),
PARAM_CHANGING_DATA: (BINARY_SENSOR_CHANGING_DATA, None, "mdi:cogs"),
PARAM_INTERNET_TIME: (BINARY_SENSOR_INTERNET_TIME, None, "mdi:update"),
PARAM_INTERNET_WEATHER: (
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ariston/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"requirements": [],
"dependencies": [],
"codeowners": ["@chomupashchuk"],
"version": "2.0.13"
"version": "2.0.14"
}

0 comments on commit af5b4f4

Please sign in to comment.