Light partition not working - entites are not available

Hello, I need some assistance here:
I tried to create some partition for my fastled LED strip, but I could’t get to make this run…

I copied the exaple from this old thread but the partition entities are not available, even after a HA reboot. I tried 3 or 4 working examples from this forum, but no one worked for me:

This is my code (identical to the example from the linked thread, except of “pin” and “rgb_order”):

light:
  - platform: fastled_clockless
    name: status_fastled
    id: status_fastled
    chipset: WS2812B
    pin: GPIO2
    num_leds: 16
    rgb_order: RGB
    internal: false

  - platform: partition
    name: "status_led_1"
    id: section1
    segments:
      - id: status_fastled
        from: 0
        to: 1
        
  - platform: partition
    name: "status_led_2"
    id: section2
    segments:
      - id: status_fastled
        from: 2
        to: 3
        
  - platform: partition
    name: "status_led_3"
    id: section3
    segments:
      - id: status_fastled
        from: 4
        to: 5
        
  - platform: partition
    name: "status_led_4"
    id: section4
    segments:
      - id: status_fastled
        from: 6
        to: 7
        
  - platform: partition
    name: "status_led_5"
    id: section5
    segments:
      - id: status_fastled
        from: 8
        to: 9
        
  - platform: partition
    name: "status_led_6"
    id: section6
    segments:
      - id: status_fastled
        from: 10
        to: 11
        
  - platform: partition
    name: "status_led_7"
    id: section7
    segments:
      - id: status_fastled
        from: 12
        to: 13
        
  - platform: partition
    name: "status_led_8"
    id: section8
    segments:
      - id: status_fastled
        from: 14
        to: 15
type or paste code here

Can anyone please help me here!

Logs? complete yaml?

Also, given the docs, fastled is not a good choice is it?

Looks like your strip is not working at all.
As Nick hinted, fastled is on the brink of depreciation. As the doc says, try using “ESP32 RMT LED Strip”

1 Like

I tried with neopixel - but same issue.

Now I tried the ESP32 RMT LED and it works like a charm. Thank you very much!