From b6d0197bb4e4f954c6d7ad0561da09bac6cdad9d Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sun, 4 Jun 2017 20:19:00 +0200 Subject: [PATCH] Minor documentation update Signed-off-by: Gergely Nagy --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b0eb5b7e..67dd3157 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,9 @@ [st:broken]: https://img.shields.io/badge/broken-X-black.svg?style=flat&colorA=e05d44&colorB=494e52 [st:experimental]: https://img.shields.io/badge/experimental----black.svg?style=flat&colorA=dfb317&colorB=494e52 -TODO +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 @@ -20,10 +22,10 @@ TODO #include #include -void setup () { - Kaleidoscope.setup (); - - USE_PLUGINS (&EEPROMSettings, &LEDPaletteTheme); +void setup() { + USE_PLUGINS(&EEPROMSettings, &LEDPaletteTheme); + + Kaleidoscope.setup(); // TODO }