After upgrading to Home Assistant 2025.5.1 I am no longer able to activate the Plantgrowth. Here is a snippet from my automation which used to work:
data:
sequence:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 100
effect: Plantgrowth
target:
entity_id: light.foyer_chandelier_light_group
enabled: true
I now get an error that Plantgrowth is not on the list
Traceback (most recent call last):
File "/config/custom_components/retry/__init__.py", line 489, in async_retry
await self._hass.services.async_call(
...<5 lines>...
)
File "/usr/src/homeassistant/homeassistant/core.py", line 2802, in async_call
response_data = await coro
^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/core.py", line 2845, in _execute_service
return await target(service_call)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1007, in entity_service_call
single_response = await _handle_entity_call(
^^^^^^^^^^^^^^^^^^^^^^^^^^
hass, entity, func, data, call.context
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1079, in _handle_entity_call
result = await task
^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/light/__init__.py", line 651, in async_handle_light_on_service
await light.async_turn_on(**filter_turn_on_params(light, params))
File "/usr/src/homeassistant/homeassistant/components/wiz/light.py", line 124, in async_turn_on
await self._device.turn_on(_async_pilot_builder(**kwargs))
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/wiz/light.py", line 49, in _async_pilot_builder
scene_id = get_id_from_scene_name(kwargs[ATTR_EFFECT])
File "/usr/local/lib/python3.13/site-packages/pywizlight/scenes.py", line 65, in get_id_from_scene_name
raise ValueError(f"Scene '{scene}' not in scene list.")
ValueError: Scene 'Plantgrowth' not in scene list.
In the Developer tools on one of these bulbs here is the list according to Home Assistant…
effect_list: Alarm, Bedtime, Candlelight, Christmas, Cozy, Cool white, Daylight, Diwali, Deep dive, Fall, Fireplace, Forest, Focus, Golden white, Halloween, Jungle, Mojito, Night light, Ocean, Party, Pulse, Pastel colors, Romance, Relax, Sunset, Spring, Summer, Steampunk, True colors, TV time, White, Wake-up, Warm white, Rhythm
Does anyone have a fix/workaround?
Plant growth (with a space, noted) still shows in the mobile app.