0
0
mirror of https://github.com/qmk/qmk_firmware.git synced 2025-04-04 12:55:44 +00:00

Block out basic keycodes

This commit is contained in:
zvecr 2022-05-09 23:51:43 +01:00
parent 218bd48ebc
commit ea92d5ed7d
3 changed files with 1309 additions and 7 deletions
data
lib/python/qmk/cli/xap

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,10 @@
{ {
version: 0.1.0 version: 0.1.0
uses: {
keycodes: 0.0.1
}
documentation: { documentation: {
order: [ order: [
broadcast_messages broadcast_messages

View File

@ -4,17 +4,17 @@ import cmd
import json import json
import random import random
import gzip import gzip
from pathlib import Path
from platform import platform from platform import platform
from milc import cli from milc import cli
KEYCODE_MAP = { from qmk.json_schema import json_load
# TODO: this should be data driven...
0x04: 'KC_A', # TODO: get from xap "uses" for the current device
0x05: 'KC_B', keycode_version = '0.0.1'
0x29: 'KC_ESCAPE', spec = json_load(Path(f'data/constants/keycodes_{keycode_version}.json'))
0xF9: 'KC_MS_WH_UP', KEYCODE_MAP = {int(k, 16): v.get('key') for k, v in spec['keycodes'].items()}
}
def _is_xap_usage(x): def _is_xap_usage(x):