blob: be057841fefde16f98b1f5c09f057be94f872f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <zephyr.h>
#include <dt-bindings/zmk/keys.h>
typedef u64_t zmk_key;
typedef u8_t zmk_mod;
struct zmk_key_event
{
zmk_key key;
bool pressed;
};
|