Firmware for the Keyboardio Model 01 and other keyboards with AVR or ARM MCUs.
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.
 
 
 
 
 
 
Go to file
Jesse Vincent 2e428d8ccc
CamelCaseifcation of LED related functions
7 years ago
src CamelCaseifcation of LED related functions 7 years ago
.travis.yml Add build infrastructure 7 years ago
COPYING Lifted out from Keyboardio-LEDControl 8 years ago
Makefile Add build infrastructure 7 years ago
README.md README.md: Add a bit of documentation 7 years ago
library.properties library.properties: Fill out paragraph= too 7 years ago

README.md

Kaleidoscope-LEDEffect-Rainbow

status Build Status

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-LEDEffect-Rainbow.h>

void setup() {
  Kaleidoscope.use(&LEDRainbowEffect, &LEDRainbowWaveEffect);

  Kaleidoscope.setup();
}

Plugin methods

The plugin provides two objects: LEDRainbowEffect, and LEDRainbowWaveEffect, neither of which have any public methods or properties, outside of those provided by all LED modes.

Dependencies