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 84b2b6ad62
Use the new, double-add protected hook functions
8 years ago
examples/Escape-OneShot Drop Key_LEDEffectNext from the example 8 years ago
src Use the new, double-add protected hook functions 8 years ago
.gitignore Initial import 8 years ago
COPYING Initial import 8 years ago
README.md Mark the plugin stable 8 years ago
library.properties Move to the keyboardio organization 8 years ago

README.md

Akela-Escape-OneShot

status

Turn the Esc key into a special key, that can cancel any active OneShot effect - or act as the normal Esc key if none are active. For those times when one accidentally presses a one-shot key, or change their minds.

Using the plugin

To use the plugin, one needs to include the header, and activate it. No further configuration is necessary.

#include <Akela-OneShot.h>
#include <Akela-Escape-OneShot.h>

void setup () {
  Keyboardio.setup (KEYMAP_SIZE);

  Keyboardio.use (&OneShot, &EscapeOneShot, NULL);
}

The plugin only makes sense when using one-shot keys.

Plugin methods

The plugin provides the EscapeOneShot object, which has no public methods.

Further reading

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