Arlec Grid Connect RGB Light GLD315HA
- CPU: bk7231t
 
- Board: WB2L
 
- Flashing method: CloudCutter
 
- CloudCutter 
- By firmware
 
- 1.3.21
 
- Tuya Generic
 
- 1947Z5R W509Z1 RGBCT Bulb
 
 
ESPHome Configuration
esphome:
  name: gld315ha
  friendly_name: Arlec GLD315HA
bk72xx:
  board: wb2l
  framework:
    version: latest
logger:
api:
ota:
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  # Enable fallback hotspot in case wifi connection fails
  ap:
    ssid: "GLD315HA Hotspot"
    password: "supersecret"
    
web_server:
sm2135:
  data_pin: PWM5
  clock_pin: PWM4
  cw_current: 25mA
# Individual outputs
output:
  - platform: sm2135
    id: output_blue
    channel: 0
    max_power: 0.7
  - platform: sm2135
    id: output_green
    channel: 1
    max_power: 0.3
  - platform: sm2135
    id: output_red
    channel: 2
    max_power: 1
  - platform: sm2135
    id: output_coolwhite
    channel: 3
    max_power: 1
  - platform: sm2135
    id: output_warmwhite
    channel: 4
    max_power: 1
light:
  - platform: rgbww
    name: "Light"
    red: output_red
    green: output_green
    blue: output_blue
    cold_white: output_coolwhite
    warm_white: output_warmwhite
    cold_white_color_temperature: 6500 K
    warm_white_color_temperature: 3000 K
    color_interlock: True
    restore_mode: ALWAYS_ON