Gergely Nagy
bd4e7677e7
|
7 years ago | |
---|---|---|
src | 7 years ago | |
.travis.yml | 8 years ago | |
COPYING | 8 years ago | |
Makefile | 7 years ago | |
README.md | 7 years ago | |
library.properties | 8 years ago |
README.md
Kaleidoscope-LEDEffect-Rainbow
Two colorful rainbow effects are implemented by this plugin: one where the rainbow waves through the keys, and another where the LEDs breathe though the colors of a rainbow. The difference is that in the first case, we have all the rainbow colors on display, and it waves through the keyboard. In the second case, we have only one color at a time, for the whole board, and the color cycles through the rainbow's palette.
Using the extension
To use the plugin, include the header, and tell the firmware to use either (or both!) of the effects:
#include <Kaleidoscope-LEDControl.h>
#include <Kaleidoscope-LEDEffect-Rainbow.h>
KALEIDOSCOPE_INIT_PLUGINS(LEDRainbowEffect, LEDRainbowWaveEffect);
void setup() {
Kaleidoscope.setup();
LEDRainbowEffect.brightness(150);
LEDRainbowWaveEffect.brightness(150);
LEDRainbowWaveEffect.delay(50);
}
Plugin methods
The plugin provides two objects: LEDRainbowEffect
, and LEDRainbowWaveEffect
,
both of which provide the following methods:
.brightness(brightness)
Sets the LED brightness for the effect.
.update_delay(delay)
Sets the number of miliseconds between effect updates. Smaller number = faster rainbows.