fixtSE
FixtSEFixtSE
en Englishes Espanol
Blog
Membresia
Tienda
Scribe
Acerca de
en Englishes Espanol
Blog
Membresia
Tienda
Scribe
Acerca de

Youtube
Instagram
RSS
Github
Membresia
Privacidad
Fixt•
Publicado: May 4, 2024—2 min read

Usa efectos de luz de WLED en ESPHome

Escrito por: Fixt

Si estas suscrito al canal
inicia sesion con tu cuenta de Google para acceder a la experiencia de tutorial inteligente.

Tabla de contenidos
Configuración YAML de ejemplo del dispositivoComplemento de Visual Studio CodeAñade DDP a tu configuración de WLEDConfigura el efecto DDP en ESPHome después de que la red esté conectadaESPHomeConfiguración de WLED

Destacados

Relacionados

Etiquetas

Tutorial
WLED
Home-Assistant
Integración
ESPHome

Si te gusta mi trabajo, considera apoyarme en Ko-fi.

← Volver al blog

Etiquetas

Tutorial
WLED
Home-Assistant
Integración
ESPHome
← Volver al blog

Destacados

Relacionados

Etiquetas

Tutorial
WLED
Home-Assistant
Integración
ESPHome
Ambiental reactivo al sonido

Configuración YAML de ejemplo del dispositivo
#

homeassistant/esphome/esphome_wled_effects.yaml

esphome:
  name: esphome_wled_effects
  friendly_name: ESPHome Wled Effects
  project:
    name: esphome_wled.effects
    version: "1.0"
  min_version: 2023.11.1
  
esp32:
  board: esp32dev
  framework:
    type: arduino
 
# Enable logging
 
logger:
 
web_server:
  port: 80
 
# Enable Home Assistant API
 
api:
 
ota:
 
improv_serial:
 
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  on_connect: 
    - delay: 5s # Gives time for improv results to be transmitted
 
  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "esphome_wled_effects"
 
captive_portal:
 
button:
  - platform: factory_reset
    id: factory_reset_btn
    name: Factory reset
 
light:
  - platform: neopixelbus
    name: "WLED Effects"
    variant: WS2812
    id: led
    pin: GPIO16
    default_transition_length: 250ms
    type: grb  
    num_leds: 142
    effects:
      - pulse:
          name: "Slow Pulse"
          transition_length: 250ms
          update_interval: 250ms
          min_brightness: 50%
          max_brightness: 80%
 

Complemento de Visual Studio Code
#

Open your Home Assistant instance and show the dashboard of a Supervisor add-on.

Añade DDP a tu configuración de WLED
#

Puedes revisar la documentación aquí

Componente DDP externo

external_components:
  - source:
      type: git
      url: https://github.com/KaufHA/common
    components: [ ddp ]
    refresh: always
 
ddp:
 
light:
  - ....
    effects:
      - addressable_ddp:
          name: "DDP"

Configura el efecto DDP en ESPHome después de que la red esté conectada
#

ESPHome
#

Open your Home Assistant instance and show an integration.

Configuración de WLED
#

Open your Home Assistant instance and show an integration.
YouTube Subscriber Access
SCRIPT

YouTube Subscriber Benefit

This script is free for all our YouTube subscribers!

Log in with your Google account to access it on our website.

Subscribe to our channel

💡 Validation Tip

If you have trouble with this feature, make sure your subscription list is public in your YouTube settings, under "Privacy".