plugwise 0.37.3__tar.gz → 0.37.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plugwise-0.37.3 → plugwise-0.37.4.1}/PKG-INFO +1 -1
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/smile.py +3 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise.egg-info/PKG-INFO +1 -1
- {plugwise-0.37.3 → plugwise-0.37.4.1}/pyproject.toml +1 -1
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_init.py +3 -3
- {plugwise-0.37.3 → plugwise-0.37.4.1}/LICENSE +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/README.md +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/__init__.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/common.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/constants.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/data.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/exceptions.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/helper.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/legacy/data.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/legacy/helper.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/legacy/smile.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/py.typed +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise/util.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise.egg-info/SOURCES.txt +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise.egg-info/dependency_links.txt +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise.egg-info/requires.txt +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/plugwise.egg-info/top_level.txt +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/setup.cfg +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/setup.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_adam.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_anna.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_generic.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_legacy_anna.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_legacy_generic.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_legacy_p1.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_legacy_stretch.py +0 -0
- {plugwise-0.37.3 → plugwise-0.37.4.1}/tests/test_p1.py +0 -0
@@ -184,6 +184,9 @@ class SmileAPI(SmileComm, SmileData):
|
|
184
184
|
|
185
185
|
async def set_number_setpoint(self, key: str, temperature: float) -> None:
|
186
186
|
"""Set the max. Boiler or DHW setpoint on the Central Heating boiler."""
|
187
|
+
if key == "max_dhw_temperature":
|
188
|
+
key = "domestic_hot_water_setpoint"
|
189
|
+
|
187
190
|
temp = str(temperature)
|
188
191
|
thermostat_id: str | None = None
|
189
192
|
locator = f'appliance[@id="{self._heater_id}"]/actuator_functionalities/thermostat_functionality'
|
@@ -875,12 +875,12 @@ class TestPlugwise: # pylint: disable=attribute-defined-outside-init
|
|
875
875
|
new_temp = 60.0
|
876
876
|
dev_id = None
|
877
877
|
_LOGGER.info("- Adjusting temperature to %s", new_temp)
|
878
|
-
for test in ["maximum_boiler_temperature", "bogus_temperature"]:
|
878
|
+
for test in ["maximum_boiler_temperature", "max_dhw_temperature", "bogus_temperature"]:
|
879
879
|
try:
|
880
880
|
await smile.set_number_setpoint(test, dev_id, new_temp)
|
881
|
-
_LOGGER.info(" +
|
881
|
+
_LOGGER.info(" + tinker %s worked as intended", test)
|
882
882
|
except pw_exceptions.PlugwiseError:
|
883
|
-
_LOGGER.info(" +
|
883
|
+
_LOGGER.info(" + tinker %s failed as intended", test)
|
884
884
|
|
885
885
|
@staticmethod
|
886
886
|
async def tinker_temp_offset(smile, dev_id):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|