Help setting up a CWWW bulb

Used cloud-cutter on two Cleverio bulbs
1st: E27 running CBL2 board, went fine color changing is good.

2nd: E14 with CBLC5 board. In HA there are 4 color buttons, from warm to cold. The 2 buttons in the middle work perfect, the warmest and coldest buttins work porly. Only reacts when setting the brightness in off mode. Cant dim, turns off when dimming.

Same config on both, exept board selection.
Any ideas?

Config:

esphome:
  name: cleverio1
  on_boot:
   then:
    - light.turn_on:
        id: light_cwww
        brightness: 40%

bk72xx:
  board: cblc5

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "CVPrmS47mwiWBfU2l5SNtkdScxogI4VH0AVwFSS6yQU="

ota:
  password: "f1c1c941705cc7d77950fdc7512130d9"

wifi:
  ssid: ! 
  password: ! 

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "cleverio1 Fallback Hotspot"
    password: "qxnl2hY3DMTZ"

captive_portal:

button:
  - platform: restart
    name: Restart

debug:
  update_interval: 30s

text_sensor:
  - platform: debug
    reset_reason:
      name: Reset Reason
  - platform: libretiny
    version:
      name: LibreTiny Version

output:
  - platform: libretiny_pwm
    id: output_cold
    pin: P26
  - platform: libretiny_pwm
    id: output_warm
    pin: P24

light:
  - platform: cwww
    id: light_cwww
    name: light
    cold_white_color_temperature: 6500 K
    warm_white_color_temperature: 2700 K
    cold_white: output_cold
    warm_white: output_warm