@ -1,5 +1,5 @@
// -*- mode: c++ -*-
// Copyright 2016 Keyboardio, inc. <jesse@keyboard.io>
// Copyright 2016 -2022 Keyboardio, inc. <jesse@keyboard.io>
// See "LICENSE" for license details
# ifndef BUILD_INFORMATION
@ -63,6 +63,9 @@
// Support for an LED mode that lets one configure per-layer color maps
# include "Kaleidoscope-Colormap.h"
// Support for turning the LEDs off after a certain amount of time
# include "Kaleidoscope-IdleLEDs.h"
// Support for Keyboardio's internal keyboard testing mode
# include "Kaleidoscope-HardwareTestMode.h"
@ -75,6 +78,16 @@
// Support for USB quirks, like changing the key state report protocol
# include "Kaleidoscope-USB-Quirks.h"
// Support for secondary actions on keys
# include "Kaleidoscope-Qukeys.h"
// Support for one-shot modifiers and layer keys
# include "Kaleidoscope-OneShot.h"
# include "Kaleidoscope-Escape-OneShot.h"
// Support for dynamic, Chrysalis-editable macros
# include "Kaleidoscope-DynamicMacros.h"
/** This 'enum' is a list of all the macros used by the Model 100's firmware
* The names aren ' t particularly important . What is important is that each
* is unique .
@ -516,7 +529,25 @@ KALEIDOSCOPE_INIT_PLUGINS(
// comfortable - or able - to do automatically, but can be useful
// nevertheless. Such as toggling the key report protocol between Boot (used
// by BIOSes) and Report (NKRO).
USBQuirks ) ;
USBQuirks ,
// The Qukeys plugin enables the "Secondary action" functionality in
// Chrysalis. Keys with secondary actions will have their primary action
// performed when tapped, but the secondary action when held.
Qukeys ,
// Enables the "Sticky" behavior for modifiers, and the "Layer shift when
// held" functionality for layer keys.
OneShot ,
EscapeOneShot ,
EscapeOneShotConfig ,
// Turns LEDs off after a configurable amount of idle time.
IdleLEDs ,
PersistentIdleLEDs ,
// Enables dynamic, Chrysalis-editable macros.
DynamicMacros ) ;
/** The 'setup' function is one of the two standard Arduino sketch functions.
* It ' s called when your keyboard first powers up . This is where you set up
@ -562,6 +593,10 @@ void setup() {
// maps for. To make things simple, we set it to five layers, which is how
// many editable layers we have (see above).
ColormapEffect . max_layers ( 5 ) ;
// For Dynamic Macros, we need to reserve storage space for the editable
// macros. A kilobyte is a reasonable default.
DynamicMacros . reserve_storage ( 1024 ) ;
}
/** loop is the second of the standard Arduino sketch functions.