Here is my simple wall panel. I wanted a nice effect with the LEDs which I think turned out ok.
Wow! The LEDs look amazing!
Okay, that’s really cool, love the LED effect! Any chance you’d share the code?
Here is the code for the light pattern
voice_assistant:
microphone: external_microphone
id: va
noise_suppression_level: 4
auto_gain: 31dBFS
volume_multiplier: 8.0
use_wake_word: true
speaker: external_speaker
on_listening:
- light.turn_on:
id: led_light
brightness: 100%
effect: "Twinkle Effect With Custom Values"
red: 0%
green: 100%
blue: 0%
light:
- platform: esp32_rmt_led_strip
id: led_light
rgb_order: grb
pin: GPIO9 # DIN pin of the LED Strip
num_leds: 64 #change the Number of LEDS accordign to your LED Strip.
rmt_channel: 0
name: "Light"
chipset: ws2812
default_transition_length: 0s
effects:
- addressable_random_twinkle:
- addressable_random_twinkle:
name: "Random Twinkle Effect With Custom Values"
twinkle_probability: 5%
progress_interval: 32ms
- addressable_twinkle:
- addressable_twinkle:
name: "Twinkle Effect With Custom Values"
twinkle_probability: 5%
progress_interval: 4ms
3 Likes
Thank you! :3