Magic home led controller error

I got a magic home led controller but is doesnt work that wel on/off works fine and coller picking as wel but as soon as i warm white select it doesnt react anymore.

  - platform: flux_led
    devices:
      192.168.1.37:
        name: Led_tekentafel
        mode: "rgbw"
Logger: homeassistant.components.websocket_api.http.connection
Source: components/flux_led/light.py:349
Integration: Home Assistant WebSocket API (documentation, issues)
First occurred: 16:21:50 (8 occurrences)
Last logged: 16:28:05

[547758714736]
[547610660096]
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 760, 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 417, in async_handle_light_on_service
    await light.async_turn_on(**filter_turn_on_params(light, params))
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 785, in async_turn_on
    await self.hass.async_add_executor_job(ft.partial(self.turn_on, **kwargs))
  File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/src/homeassistant/homeassistant/components/flux_led/light.py", line 349, in turn_on
    self._bulb.setRgbw(*tuple(rgb), w=white, brightness=brightness)
  File "/usr/local/lib/python3.8/site-packages/flux_led/__main__.py", line 869, in setRgbw
    raise Exception
Exception

From code, this error tells your light does not actually support rgbw mode, as in setting both color and white at the same time.

The RGB/W controllers should be better supported in 2021.11

1 Like