You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
7 years ago
|
# Kaleidoscope-LED-Wavepool
|
||
7 years ago
|
|
||
7 years ago
|
The `WavepoolEffect` plugin makes waves of light splash out from each keypress.
|
||
|
When idle, it will also simulate gentle rainfall on the keyboard.
|
||
7 years ago
|
|
||
|
## Using the plugin
|
||
|
|
||
|
To use the plugin, one needs to include the header and select the effect.
|
||
|
|
||
|
```c++
|
||
|
#include <Kaleidoscope.h>
|
||
6 years ago
|
#include <Kaleidoscope-LEDControl.h>
|
||
7 years ago
|
#include <Kaleidoscope-LED-Wavepool.h>
|
||
7 years ago
|
|
||
6 years ago
|
KALEIDOSCOPE_INIT_PLUGINS(LEDControl, WavepoolEffect);
|
||
7 years ago
|
|
||
6 years ago
|
void setup (){
|
||
7 years ago
|
Kaleidoscope.setup();
|
||
|
|
||
7 years ago
|
WavepoolEffect.idle_timeout = 5000; // 5 seconds
|
||
7 years ago
|
WavepoolEffect.activate();
|
||
7 years ago
|
}
|
||
|
```
|
||
|
|
||
6 years ago
|
It is recommended to place the activation of the plugin as early as possible, so
|
||
|
the plugin can catch all relevant key presses.
|
||
7 years ago
|
|
||
|
## Plugin methods
|
||
|
|
||
7 years ago
|
The plugin provides the `WavepoolEffect` object, which has the following
|
||
7 years ago
|
properties:
|
||
|
|
||
7 years ago
|
### `.idle_timeout`
|
||
|
|
||
|
> When to keys are being pressed, light will periodically splash across
|
||
|
> the keyboard. This value sets the delay in ms before that starts.
|
||
|
>
|
||
|
> To disable the idle animation entirely, set this to 0.
|
||
|
>
|
||
|
> Default is 5000 (5 seconds).
|
||
|
|
||
7 years ago
|
## Dependencies
|
||
|
|
||
6 years ago
|
* [Kaleidoscope-LEDControl](LEDControl.md)
|
||
7 years ago
|
|
||
|
## Further reading
|
||
|
|
||
|
Starting from the [example][plugin:example] is the recommended way of getting
|
||
|
started with the plugin.
|
||
|
|
||
6 years ago
|
[plugin:example]: ../../examples/LEDS/LED-Wavepool/LED-Wavepool.ino
|