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.
Michael Richters
cf5c19dd6c
|
3 years ago | |
---|---|---|
.. | ||
src | 3 years ago | |
README.md | 4 years ago | |
library.properties | 4 years ago |
README.md
LayerFocus
The LayerFocus
plugin exposes a number of layer-related commands via
Focus, to allow controlling layers from the host side.
Using the plugin
To use the plugin, we need to include the header, and let the firmware know we want to use it:
#include <Kaleidoscope.h>
#include <Kaleidoscope-FocusSerial.h>
#include <Kaleidoscope-LayerFocus.h>
KALEIDOSCOPE_INIT_PLUGINS(
Focus,
LayerFocus
);
Focus commands
The plugin provides the following Focus commands:
layer.activate N
/ layer.deactivate N
/ layer.isActive N
Activates, deactivates, or queries the state of layer
N
.
layer.moveTo N
Moves to layer
N
, deactivating all other layers in the process.
layer.state [STATE...]
Without arguments, display the state of all layers, from lower to higher. Each active layer will be represented by
1
, while inactive layers will be represented by0
.With arguments, override the state of layers with the
STATE
given.