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 f11189edc2
Update README to match code.
7 years ago
src Initial import 7 years ago
COPYING Initial import 7 years ago
Makefile Initial import 7 years ago
README.md Update README to match code. 7 years ago
library.properties Initial import 7 years ago

README.md

Kaleidoscope-LEDEffect-BootGreeting

status

If you want to have your keyboard signal when it turns on, but you don't want to use any more complicated LED modes, this plugin is for you. It will make the LEDEffectNext key on your keymap slowly breathe for about ten seconds after plugging the keyboard in (without blocking the normal functionality of the keyboard, of course).

Using the plugin

To use the plugin, include the header, and tell Kaleidoscope to use the plugin:

#include <Kaleidoscope.h>
#include <Kaleidoscope-LEDEffect-BootGreeting.h>

void setup() {
  Kaleidoscope.use(&BootGreetingEffect, &LEDOff);

  Kaleidoscope.setup();
}

The plugin provides no methods or properties, the above is all it can do.

Dependencies