summaryrefslogtreecommitdiff
path: root/app/include/zmk/keymap.h
diff options
context:
space:
mode:
authorKemoNine <mcrosson@users.noreply.github.com>2020-12-09 09:35:57 -0500
committerGitHub <noreply@github.com>2020-12-09 09:35:57 -0500
commit2427a4ab3308523200f9419316a10a75f237bb6c (patch)
tree9193a18fd51b26aa4eef1b0331e2ca021b20602d /app/include/zmk/keymap.h
parent4c92a4e50f317227ac6b086be8cde137d5c1fc4e (diff)
feature(keymaps): Keymap layer state event, highest layer API
* Fire an event w/ layer number, state, and timestamp when a layer is activated/deactivated. * Add `zmk_keymap_highest_layer_active()` query. Co-authored-by: KemoNine <mcrosson@kemonine.info>
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r--app/include/zmk/keymap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h
index b8f4969..88dc933 100644
--- a/app/include/zmk/keymap.h
+++ b/app/include/zmk/keymap.h
@@ -6,7 +6,12 @@
#pragma once
+typedef u32_t zmk_keymap_layers_state;
+
+u8_t zmk_keymap_layer_default();
+zmk_keymap_layers_state zmk_keymap_layer_state();
bool zmk_keymap_layer_active(u8_t layer);
+u8_t zmk_keymap_highest_layer_active();
int zmk_keymap_layer_activate(u8_t layer);
int zmk_keymap_layer_deactivate(u8_t layer);
int zmk_keymap_layer_toggle(u8_t layer);