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.
|
#pragma once |
|
|
|
#include <zephyr.h> |
|
#include <dt-bindings/zmk/keys.h> |
|
|
|
typedef u32_t zmk_key; |
|
typedef u8_t zmk_action; |
|
typedef u8_t zmk_mod; |
|
typedef u8_t zmk_mod_flags; |
|
|
|
struct zmk_key_event |
|
{ |
|
u32_t column; |
|
u32_t row; |
|
zmk_key key; |
|
bool pressed; |
|
}; |