Esp32 cct led

Hi everyone,

I have an ESP32 led controller (quinled) with multiple outputs… I also have a few spots with 6000k and 2000k temperatures… while I can drive both channels separately (each as an individual entity within HA) - is it also possible to combine both channels to a single entity with “coloring” on it ?

I see the RGBCCT example, but my LED’s do not have full RGB…

R

You need to provide way more information. For example, how is your hardware connected to Home Assistant?

Also, what example is that. Care to share a link?

I have the QuinLED An-Penta-Plus, connected with Wifi to HA and I’ve loaded the configuration with ESPHOME

where the main config looks like:

output:
  - platform: ledc
    pin: 33
    frequency: 19531Hz
    id: LED_channel_1
  - platform: ledc
    pin: 32
    frequency: 19531Hz
    id: LED_channel_2

light:
  - platform: monochromatic
    name: "${esphome_name}-L1"
    default_transition_length: 1s
    id: LED1
    output: LED_channel_1
  - platform: monochromatic
    name: "${esphome_name}-L2"
    default_transition_length: 1s
    id: LED2
    output: LED_channel_2

QuinLED An-Penta-Plus ESPhome configuration example - quinled.info

Yay thanks

found it … and topic can be closed … platform is cwww

light:
  - platform: cwww
    name: "Livingroom Lights"
    cold_white: LED_channel_1
    warm_white: LED_channel_2
    cold_white_color_temperature: 6000 K
    warm_white_color_temperature: 2000 K
    effects:
      - random:          
          name: "My Slow Random Effect"
          transition_length: 60s
          update_interval: 60s
      - random:
          name: "My Medium Random Effect"
          transition_length: 30s
          update_interval: 30s
      - random:
          name: "My Fast Random Effect"
          transition_length: 10s
          update_interval: 10s
      - random:
          name: "My Very Fast Random Effect"
          transition_length: 1s
          update_interval: 1s

Hello Roelf Zomerman,

If one of the suggestions listed solves your problem, please consider clicking the solution button to close the thread. (even your own…)
How to help us help you - or How to ask a good question.