2023-03-03 12:26:53 +01:00
|
|
|
// Copyright 2023 QMK
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-03-03 18:50:40 +01:00
|
|
|
#include <stdint.h>
|
2023-03-27 21:08:17 +02:00
|
|
|
#include "keyboard.h"
|
2023-03-03 18:50:40 +01:00
|
|
|
|
2023-03-03 12:26:53 +01:00
|
|
|
// translates key to keycode
|
|
|
|
uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
|