Skip to content

Commit

Permalink
Added experimental temperature range feature for climate entity, if c…
Browse files Browse the repository at this point in the history
…ooling & heating are both active, Added set_time_controlled_cooling_setpoint, set_cooling_for_days, and set_ventilation_boost, Renamed some climate presets to match the names in myVAILLANT
  • Loading branch information
signalkraft committed Jul 3, 2024
1 parent 819aff4 commit ed31cdc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom_components/mypyllant/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/signalkraft/mypyllant-component/issues",
"requirements": [
"myPyllant==0.8.15"
"myPyllant==0.8.17"
],
"version": "v0.8.4"
}
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ types-PyYAML~=6.0.12.20240311

# Need specific versions
pytest-homeassistant-custom-component==0.13.142
myPyllant==0.8.15
myPyllant==0.8.17

# Versions handled by pytest-homeassistant-custom-component
freezegun
Expand Down
2 changes: 1 addition & 1 deletion tests/test_calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async def test_dhw_no_circulation_calendar(
mocked_api: MyPyllantAPI,
system_coordinator_mock,
):
test_data = load_test_data(DATA_DIR / "heatpump_electric_backup")
test_data = load_test_data(DATA_DIR / "heatpump_cooling")
with mypyllant_aioresponses(test_data) as _:
system_coordinator_mock.data = (
await system_coordinator_mock._async_update_data()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def test_zone_sensors(
mocked_api: MyPyllantAPI,
system_coordinator_mock,
):
test_data = load_test_data(DATA_DIR / "heatpump_electric_backup")
test_data = load_test_data(DATA_DIR / "heatpump_cooling")
with mypyllant_aioresponses(test_data) as _:
system_coordinator_mock.data = (
await system_coordinator_mock._async_update_data()
Expand Down

0 comments on commit ed31cdc

Please sign in to comment.