top of page

Strip Light Controller/Bulb

ציבורי·חבר/ה 1

LS5050 (ESP or Tasmota) Control 3 white strips rather than 1 RGB

Is there a way to configure the LS5050 to 3 (2-wire) white strips rather than 1 (4-wire) RGB? Either using the tasmota or esp version? I have both in hand?


I will tie this all in and use with Home Assistant.

41 צפיות
ohBlahDee
Dec 20, 2024

For esp i used the following code:



substitutions:

  name: athom-rgb-light-8af425

  friendly_name: ESPRGB001



ota:

  - platform: esphome



 

esphome:

  name: ${name}

  name_add_mac_suffix: false

  friendly_name: ${friendly_name}

api:

  encryption:

    key: *********************************************



wifi:

  ssid: !secret wifi_ssid

  password: !secret wifi_password


#my stuffs



esp8266:

  board: esp8285

  restore_from_flash: true



web_server:

  port: 80




output:

  - platform: esp8266_pwm

    id: red_output

    pin: GPIO12

  - platform: esp8266_pwm

    id: green_output

    pin: GPIO4

  - platform: esp8266_pwm

    id: blue_output

    pin: GPIO14



light:

  - platform: monochromatic

    name: "Light 01"

    output: green_output

  - platform: monochromatic

    name: "Light 02"

    output: red_output

  - platform: monochromatic

    name: "Light 03"

    output: blue_output


bottom of page