Hi all!
I’m using a Fibaro RGBW zwave module with Z-Wave JS 0.1.35 and Core 2021.8.1.
The device has been included without problem in the zwave network and the associated entities created in Home Assistant.
The problem is that when I click on the colorwheel the color doesn’t change and I get the following error in the log:
Logger: homeassistant.components.websocket_api.http.connection
Source: components/zwave_js/light.py:322
Integration: Home Assistant WebSocket API (documentation, issues)
First occurred: 20:59:36 (180 occurrences)
Last logged: 23:02:13
[1755614728] Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
[1760528104] Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
[1755084208] Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
[1798926688] Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
[1755612208] Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 185, in handle_call_service
await hass.services.async_call(
File "/usr/src/homeassistant/homeassistant/core.py", line 1491, in async_call
task.result()
File "/usr/src/homeassistant/homeassistant/core.py", line 1526, in _execute_service
await handler.job.target(service_call)
File "/usr/src/homeassistant/homeassistant/helpers/entity_component.py", line 213, in handle_service
await self.hass.helpers.service.entity_service_call(
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 658, in entity_service_call
future.result() # pop exception if have
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 856, in async_request_call
await coro
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 695, in _handle_entity_call
await result
File "/usr/src/homeassistant/homeassistant/components/light/__init__.py", line 458, in async_handle_light_on_service
await light.async_turn_on(**filter_turn_on_params(light, params))
File "/usr/src/homeassistant/homeassistant/components/zwave_js/light.py", line 262, in async_turn_on
await self._async_set_colors(rgbw_channels, transition)
File "/usr/src/homeassistant/homeassistant/components/zwave_js/light.py", line 304, in _async_set_colors
await self._async_set_color(color, value, zwave_transition)
File "/usr/src/homeassistant/homeassistant/components/zwave_js/light.py", line 322, in _async_set_color
await self.info.node.async_set_value(target_zwave_value, new_value, transition)
File "/usr/local/lib/python3.9/site-packages/zwave_js_server/model/node.py", line 434, in async_set_value
raise NotFoundError(
zwave_js_server.exceptions.NotFoundError: Option transitionDuration not found on value Value(value_id='25-51-0-targetColor-2') on node Node(node_id=25)
Can anyone help me to solve the problem?
Thanks.