Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog, fix put_paramset #811

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@
- FrostPoint
- OperatingVoltageLevel
- VaporConcentration
- Add climate presets based on WEEK_PROGRAM_POINTER
- Add LOW_BAT_LIMIT
- Add WEEK_PROGRAM_POINTER for bidcos climate devices
- Add climate presets based on WEEK_PROGRAM_POINTER
- Define schedule_channel_address for HM schedule usage
- Don't read on unavailable devices
- Enable schedule on hm thermostat
- Fix usage of master dps for bidcos climate devices
- Poll master dp values 5s after send for bidcos devices
- Refactor parameter_visibility
- Rename paramset_key to paramset_key_or_link_address for put_paramset
- Add support for CalculatedDataPoint
- Add translations to apparent_temperature

Expand Down
4 changes: 2 additions & 2 deletions custom_components/homematicip_local/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ async def _async_service_put_link_paramset(hass: HomeAssistant, service: Service
try:
await hm_device.client.put_paramset(
channel_address=receiver_channel_address,
paramset_key=sender_channel_address,
paramset_key_or_link_address=sender_channel_address,
values=values,
rx_mode=rx_mode,
check_against_pd=True,
Expand All @@ -619,7 +619,7 @@ async def _async_service_put_paramset(hass: HomeAssistant, service: ServiceCall)
try:
await hm_device.client.put_paramset(
channel_address=channel_address,
paramset_key=paramset_key,
paramset_key_or_link_address=paramset_key,
values=values,
wait_for_callback=wait_for_callback,
rx_mode=rx_mode,
Expand Down