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

Re add channel 7 for HmIPW-WRC6 #1184

Merged
merged 2 commits into from
Sep 6, 2023
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
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 2023.9.1 (2023-09-06)

- Re add channel 7 for HmIPW-WRC6

# Version 2023.9.0 (2023-09-03)

- Refactor cover api
Expand Down
2 changes: 1 addition & 1 deletion hahomematic/platforms/custom/definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
},
HmEntityDefinition.IP_SIMPLE_FIXED_COLOR_LIGHT_WIRED: {
ED_DEVICE_GROUP: {
ED_PRIMARY_CHANNEL: 1,
ED_PRIMARY_CHANNEL: 0,
ED_REPEATABLE_FIELDS: {
FIELD_COLOR: "COLOR",
FIELD_LEVEL: "LEVEL",
Expand Down
2 changes: 1 addition & 1 deletion hahomematic/platforms/custom/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def make_ip_rgbw_light(
),
),
"HmIPW-WRC6": CustomConfig(
func=make_ip_simple_fixed_color_light_wired, channels=(7, 8, 9, 10, 11, 12)
func=make_ip_simple_fixed_color_light_wired, channels=(7, 8, 9, 10, 11, 12, 13)
),
"OLIGO.smart.iq.HM": CustomConfig(func=make_rf_dimmer, channels=(1, 2, 3, 4, 5, 6)),
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "hahomematic"
version = "2023.9.0"
version = "2023.9.1"
license = {text = "MIT License"}
description = "Homematic interface for Home Assistant running on Python 3."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_central_pydevccu.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def test_central_full(central_unit_full) -> None:
fptr.write(orjson.dumps(addresses, option=orjson.OPT_INDENT_2 | orjson.OPT_NON_STR_KEYS))

assert usage_types[HmEntityUsage.NO_CREATE] == 3056
assert usage_types[HmEntityUsage.CE_PRIMARY] == 186
assert usage_types[HmEntityUsage.CE_PRIMARY] == 187
assert usage_types[HmEntityUsage.ENTITY] == 3303
assert usage_types[HmEntityUsage.CE_VISIBLE] == 98
assert usage_types[HmEntityUsage.CE_SECONDARY] == 148
Expand Down