sk6812-ws2812fx-mqtt-esp8266
sk6812-ws2812fx-mqtt-esp8266 copied to clipboard
Use WS2812FX on the SK6812 RGBW led strips using the Feather Huzzah (ESP8266) and Home Assistant
ha_mqtt_ledstrip.ino Line 178 ```C void sendState() {` StaticJsonBuffer jsonBuffer; JsonObject& root = jsonBuffer.createObject(); JsonObject& color = root.createNestedObject("color"); color["r"] = red; color["g"] = green; color["b"] = blue; root["white_value"] = white; root["state"]...
Hi, is it possible for you to implement transitions from previous state to a new state? So we have a nice fade when turning the leds on/ off , changing...