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
Gergely Nagy b6d0197bb4
Minor documentation update
7 years ago
examples/LED-Palette-Theme Kaleidoscope Style Guide conformance 7 years ago
src Kaleidoscope Style Guide conformance 7 years ago
.gitignore Initial import 7 years ago
.travis.yml Initial import 7 years ago
COPYING Initial import 7 years ago
Makefile Initial import 7 years ago
README.md Minor documentation update 7 years ago
library.properties Initial import 7 years ago

README.md

Kaleidoscope-LED-Palette-Theme

status Build Status

A common base for plugins that want to provide themes, or theme-related capabilities, using a 15+1 color palette. In other words, this is for plugin authors primarily.

Using the plugin

TODO

#include <Kaleidoscope.h>
#include <Kaleidoscope-EEPROM-Settings.h>
#include <Kaleidoscope-LED-Palette-Theme.h>

void setup() {
  USE_PLUGINS(&EEPROMSettings, &LEDPaletteTheme);

  Kaleidoscope.setup();

  // TODO
}

Plugin methods

The plugin provides the LEDPaletteTheme object, which has the following methods:

TODO

Dependencies

Further reading

Starting from the example is the recommended way of getting started with the plugin.