Skip to content
This repository was archived by the owner on Sep 18, 2021. It is now read-only.

Animations

Lukas edited this page Feb 17, 2019 · 3 revisions

Blink

LEDs cycle trough colors

{
    "token": "SUPERSECRETCODE",
    "animation": {
        "duration": 1000,
	"colors": [
	    {"r": 255, "g": 0, "b": 0, "a": 0.25},
	    {"r": 0, "g": 255, "b": 0, "a": 0.25},
	    {"r": 0, "g": 0, "b": 255, "a": 0.25}
	]
    }
}
  • duration: number of updates the color is shown
  • colors: array containing the different colors

CenterToSide

LEDs flow from the center of the Strip to the edges of the strip

{
    "token": "SUPERSECRETCODE",
    "animation": {
        "duration": 1000,
	"colors": [
	    {"r": 255, "g": 0, "b": 0, "a": 0.25},
	    {"r": 0, "g": 255, "b": 0, "a": 0.25},
	    {"r": 0, "g": 0, "b": 255, "a": 0.25}
	]
    }
}
  • duration: number of update-cycles it takes to completely cover all LEDs
  • colors: array containing the different colors
Clone this wiki locally