Hi,
I have a problem with my ESP8266 and the Neopixel. Randomly, the light just turns off. I also have a fan control, this all happens here too. But I can’t find out what it is either via the log or in any other way. Has anyone had this problem or have any ideas?
esphome:
name: pixel-led-stripe
friendly_name: Pixel LED-Stripe
esp8266:
board: nodemcuv2
framework:
version: recommended
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "123xxx"
ota:
password: "123xxx"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Pixel-Led-Stripe"
password: "123xxx"
captive_portal:
light:
- platform: neopixelbus
type: GRB
variant: WS2812
pin: D1
num_leds: 315
name: "NeoPixel LED-Stripe"
effects:
- addressable_color_wipe:
- addressable_color_wipe:
name: Color Wipe Effect With Custom Values
colors:
- red: 100%
green: 100%
blue: 100%
num_leds: 5
- red: 0%
green: 0%
blue: 0%
num_leds: 5
add_led_interval: 100ms
reverse: false
- addressable_scan:
- addressable_scan:
name: Scan Effect With Custom Values
move_interval: 100ms
scan_width: 15
- addressable_random_twinkle:
- addressable_random_twinkle:
name: Random Twinkle Effect With Custom Values
twinkle_probability: 5%
progress_interval: 32ms
- addressable_flicker:
- addressable_flicker:
name: Flicker Effect With Custom Values
update_interval: 16ms
intensity: 5%