zmk_mf68/src/keymap.h

17 lines
344 B
C
Raw Normal View History

2020-05-02 13:37:37 +10:00
#ifndef ZMK_KEYMAP_H
#define ZMK_KEYMAP_H
#include <devicetree.h>
#include <usb/usb_device.h>
#include <usb/class/usb_hid.h>
#include "zmk.h"
2020-05-02 13:37:37 +10:00
#define ZMK_KEYMAP_NODE DT_CHOSEN(zmk_keymap)
#define ZMK_KEYMAP_LAYERS_LEN DT_PROP_LEN(ZMK_KEYMAP_NODE,layers)
2020-05-02 13:37:37 +10:00
enum hid_kbd_code zmk_keymap_keycode_from_position(u32_t row, u32_t column);
2020-05-02 13:37:37 +10:00
#endif