Skip to content

Commit

Permalink
feat: add support for COLOR_LOGIC_2_5 lights (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptk committed Jun 11, 2024
1 parent f41d1f9 commit 4e4ed0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/omnilogic_local/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
light.msp_config.name,
)
match light.msp_config.type:
case ColorLogicLightType.UCL:
case ColorLogicLightType.UCL | ColorLogicLightType.TWO_FIVE:
entities.append(OmniLogicLightEntity(coordinator=coordinator, context=system_id))
case _:
_LOGGER.warning(
Expand Down
4 changes: 2 additions & 2 deletions custom_components/omnilogic_local/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"issue_tracker": "https://github.com/cryptk/haomnilogic-local/issues",
"loggers": ["pyomnilogic_local"],
"requirements": [
"python_omnilogic_local==0.13.2"
"python_omnilogic_local==0.14.0"
],
"ssdp": [],
"version": "0.7.4",
"version": "0.7.5",
"zeroconf": []
}

0 comments on commit 4e4ed0c

Please sign in to comment.