Syncing Bulb With WLED

Hey! :wave:

If you’re trying to extract RGB colors from a WLED segment (e.g. to sync it with another RGB light in Home Assistant), here’s a clean way to do it using the wled_liveviewproxy.send_command service.

Using the WLED Live View Proxy integration, you can request the full current state of your WLED device with:

service: wled_liveviewproxy.send_command
data:
  targets:
    entity_id: light.wlvp_wled_mystrip
  command:
    v: true

The returned object (via response_variable) will include the segment’s color block like this:

"col": [
  [0, 255, 0],
  [0, 0, 0],
  [255, 255, 255]
]

This gives you direct access to the current RGB colors used by the WLED effect — especially the primary color (col[0]). You can reuse it in:

  • light.turn_on for other RGB lights
  • Automations or scenes that react to color
  • Synchronizing multiple LED devices visually

You can learn more or try the full YAML examples here:
:link: WLED Live View Proxy for Home Assistant – Forum Thread

1 Like