Skip to content

Commit

Permalink
Merge branch 'master' into config-flow-update
Browse files Browse the repository at this point in the history
  • Loading branch information
brg468 authored Oct 7, 2024
2 parents 9e984db + 35585c6 commit 09a7854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/wyzeapi/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry,

for camera in await camera_service.get_cameras():
# Only model that I know of that has a floodlight
if camera.product_model == "WYZE_CAKP2JFUS":
if camera.product_model == "WYZE_CAKP2JFUS" or camera.product_model == "HL_CFL2":
lights.append(WyzeCamerafloodlight(camera, camera_service))

async_add_entities(lights, True)
Expand Down

0 comments on commit 09a7854

Please sign in to comment.