diff options
Diffstat (limited to 'layer.h')
-rw-r--r-- | layer.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layer.h b/layer.h new file mode 100644 index 0000000000..79a549857c --- /dev/null +++ b/layer.h @@ -0,0 +1,13 @@ +#ifndef LAYER_H +#define LAYER_H 1 + +#include <stdint.h> + + +/* return keycode for switch */ +uint8_t layer_get_keycode(uint8_t row, uint8_t col); + +/* process layer switching */ +void layer_switching(uint8_t fn_bits); + +#endif |