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

v3.4.9 #511

Merged
merged 14 commits into from
Nov 1, 2024
Prev Previous commit
Next Next commit
add support for CFMT
  • Loading branch information
msp1974 committed Oct 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 05b4307b3afed250476b5c1dea667d8fa34f29a7
2 changes: 1 addition & 1 deletion custom_components/wiser/helpers.py
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ def get_device_name(data, device_id, device_type="device"):
if device.product_type == "UnderFloorHeating":
return f"{ENTITY_PREFIX} {device.name}"

if device.product_type == "HeatingActuator":
if device.product_type in ["HeatingActuator", "CFMT"]:
device_room = data.wiserhub.rooms.get_by_device_id(device_id)
# If device not allocated to a room return type and id only
if device_room: