ESPHome nodemcu esp32 with neopixel 2 individual addr. led strips?

Try giving them each a unique name:

light:
  - platform: neopixelbus
    name: "Light 1"
    type: GRBW
    variant: SK6812
    pin: GPIO13
    num_leds: 34
  - platform: neopixelbus
    name: "Light 2"
    type: GRB
    variant: WS2812
    pin: GPIO12
    num_leds: 100
1 Like