Hello I have a 8 led neopixel bar and want to use esphome with a esp8266 to control it.
I have this light-component in my esphome config.
When powering up th esp8266 and turning on the ledbar it wil always turn on with full bright led color.
The light switch in home assistant is also behaving strange. When turning on the ledbar wil turn on. When turning of the switch the switch gows a short moment to off and then to on and the bar stays on. Another click to turn off wil actualy turn the switch and led bar to off. How can this be changed to normal behaviour?
light:
- platform: fastled_clockless
pin: GPIO3
num_leds: 8
chipset: NEOPIXEL
name: neopixel
id: neopixel
on_turn_on:
- light.turn_on:
id: neopixel
brightness: 50%
red: 0%
green: 100%
blue: 0%
- logger.log: "Light Turned On!"
on_turn_off:
- logger.log: "Light Turned Off!"