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

[deconz] Support window covering controller #15856

Merged
merged 1 commit into from
Nov 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
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private void addLight(String lightId, LightMessage light) {
case COLOR_TEMPERATURE_LIGHT -> thingTypeUID = THING_TYPE_COLOR_TEMPERATURE_LIGHT;
case COLOR_DIMMABLE_LIGHT, COLOR_LIGHT -> thingTypeUID = THING_TYPE_COLOR_LIGHT;
case EXTENDED_COLOR_LIGHT -> thingTypeUID = THING_TYPE_EXTENDED_COLOR_LIGHT;
case WINDOW_COVERING_DEVICE -> thingTypeUID = THING_TYPE_WINDOW_COVERING;
case WINDOW_COVERING_DEVICE, WINDOW_COVERING_CONTROLLER -> thingTypeUID = THING_TYPE_WINDOW_COVERING;
case WARNING_DEVICE -> thingTypeUID = THING_TYPE_WARNING_DEVICE;
case DOORLOCK -> thingTypeUID = THING_TYPE_DOORLOCK;
case CONFIGURATION_TOOL -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public enum LightType {
DIMMABLE_LIGHT("Dimmable light"),
DIMMABLE_PLUGIN_UNIT("Dimmable plug-in unit"),
WINDOW_COVERING_DEVICE("Window covering device"),
WINDOW_COVERING_CONTROLLER("Window covering controller"),
CONFIGURATION_TOOL("Configuration tool"),
WARNING_DEVICE("Warning device"),
DOORLOCK("Door Lock"),
Expand Down