qmk-dactyl-manuform-a/keymap_skel.h

22 lines
494 B
C
Raw Normal View History

2010-10-23 18:17:26 +02:00
#ifndef KEYMAP_SKEL_H
#define KEYMAP_SKEL_H 1
#include <stdint.h>
#include <stdbool.h>
#include "usb_keycodes.h"
2010-10-29 08:17:18 +02:00
/* keycode in specific layer */
uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col);
2010-10-23 18:17:26 +02:00
2010-10-29 08:17:18 +02:00
/* layer to move during press Fn key */
uint8_t keymap_fn_layer(uint8_t fn_bits);
2010-10-29 08:17:18 +02:00
/* keycode to send when release Fn key without using */
uint8_t keymap_fn_keycode(uint8_t fn_bits);
/* whether special key combination */
2010-10-28 08:43:51 +02:00
bool keymap_is_special_mode(uint8_t fn_bits);
2010-10-23 18:17:26 +02:00
#endif