zmk_mf68/app/include/zmk/keys.h

21 lines
341 B
C
Raw Normal View History

/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <zephyr.h>
2020-05-17 13:26:26 +10:00
#include <dt-bindings/zmk/keys.h>
typedef uint32_t zmk_key_t;
typedef uint8_t zmk_mod;
typedef uint8_t zmk_mod_flags;
struct zmk_key_event {
uint32_t column;
uint32_t row;
zmk_key_t key;
bool pressed;
};