-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb67253
commit 03cd699
Showing
4 changed files
with
196 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
layout: default | ||
title: Multi-Led Patterns | ||
nav_order: 0 | ||
parent: Patterns | ||
grand_parent: Vortex Engine | ||
--- | ||
|
||
# Multi-Led Patterns | ||
|
||
A multi-led pattern will control all LEDs on the device, therefore **only one** multi-led pattern can be selected at a time. Each multi-led pattern has a distinct effect or appearance, they use custom logic to decide how colors from the colorset will travel across LEDs. | ||
|
||
## The Pattern List | ||
|
||
Below is the list of multi-patterns | ||
|
||
``` | ||
hueshift | ||
theater chase | ||
chaser | ||
zigzag | ||
zipfade | ||
drip | ||
dripmorph | ||
crossdops | ||
doublestrobe | ||
meteor | ||
sparkletrace | ||
vortexwipe | ||
warp | ||
warpworm | ||
snowball | ||
lighthouse | ||
pulsish | ||
fill | ||
bounce | ||
splitstrobie | ||
backstrobe | ||
materia | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- | ||
layout: default | ||
title: Single-Led Patterns | ||
nav_order: 0 | ||
parent: Patterns | ||
grand_parent: Vortex Engine | ||
--- | ||
|
||
# Single-Led Patterns | ||
|
||
A single-led pattern is displayed entirely on **one LED**. This means each LED may use a different pattern at the same time. | ||
|
||
Unlike multi-led patterns where each pattern is a distinct type, there are **two types** of single led patterns: | ||
|
||
- **Strobe Patterns** will blink or strobe from color to color in distinct flashes | ||
- **Blend Patterns** will smoothly blend from color to color (while strobing) | ||
|
||
|
||
## Basic Patterns | ||
|
||
Basic patterns cover all possible patterns which blink on and off. They have the following parameters: | ||
- on duration: how long the led blinks on for | ||
- off duration: how long the led is off each blink | ||
- gap duration: how large of a gap between each volley of colors | ||
- dash duration: how large of a dash/line embedded in the gap | ||
- grouping size: how many colors appear in a group before the gap | ||
|
||
## Blend Patterns | ||
Blend patterns are similar to basic patterns but blend between colors in the colorset instead only using the selected colors. They have the following paramters: | ||
- on duration: how long the led blinks on for | ||
- off duration: how long the led is off each blink | ||
- gap duration: how large of a gap between each volley of colors | ||
- dash duration: how large of a dash/line embedded in the gap | ||
- grouping size: how many colors appear in a group before the gap | ||
- blend speed: the speed at which the blend will progress | ||
- flip count: the number of times the blend will flip to complementary colors | ||
|
||
|
||
## The Pattern List | ||
|
||
Below is the list of single-led patterns | ||
|
||
``` | ||
strobe | ||
hyperstrobe | ||
dops | ||
strobie | ||
dopy | ||
ultradops | ||
strobegap | ||
hypergap | ||
dopgap | ||
strobiegap | ||
dopygap | ||
ultragap | ||
blinkie | ||
ghostcrush | ||
doubledops | ||
chopper | ||
dashgap | ||
dashdops | ||
dashcrush | ||
ultradash | ||
gapcycle | ||
dashcycle | ||
tracer | ||
ribbon | ||
miniribbon | ||
blend | ||
blendstrobe | ||
blendstrobegap | ||
complementary blend | ||
complementary blendstrobe | ||
complementary blendstrobegap | ||
solid | ||
``` |