diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-12-19 17:01:11 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-12-19 17:01:11 +0100 |
| commit | d7c506450be613d6575649218fbcc90a4fabd150 (patch) | |
| tree | 72319f85b7bce6842d30e495bb06270c81850c33 /src/hid.h | |
| parent | e4783bbcc4214416befceb53f6af9ebdfb35ba86 (diff) | |
| download | sxkbd-d7c506450be613d6575649218fbcc90a4fabd150.tar.gz sxkbd-d7c506450be613d6575649218fbcc90a4fabd150.zip | |
Enable temporary (weak) mods for specific keys and layer switching with mods
Diffstat (limited to 'src/hid.h')
| -rw-r--r-- | src/hid.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,7 @@ #pragma once +#include "keymat.h" + #include <stdbool.h> #include <stdint.h> @@ -12,4 +14,6 @@ enum { }; void hid_init(void); +void hid_force_release(uint x, uint y); +void hid_switch_layer_with_key(uint8_t layer, uint x, uint y); void hid_task(void); |
