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.
Kaleidoscope/README.md

1.1 KiB

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