├── .clang-format ├── .devcontainer ├── .bashrc ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── clang-format-lint.yml │ ├── doc-checks.yml │ └── test.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── Kconfig ├── boards │ ├── Kconfig │ ├── arm │ │ ├── bluemicro840 │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── arduino_pro_micro_pins.dtsi │ │ │ ├── bluemicro840_v1.dts │ │ │ ├── bluemicro840_v1.yaml │ │ │ ├── bluemicro840_v1_defconfig │ │ │ └── board.cmake │ │ ├── dz60rgb │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── board.cmake │ │ │ ├── dz60rgb_rev1.dts │ │ │ ├── dz60rgb_rev1.keymap │ │ │ ├── dz60rgb_rev1.yaml │ │ │ ├── dz60rgb_rev1_defconfig │ │ │ └── pinmux.c │ │ ├── nice_nano │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── arduino_pro_micro_pins.dtsi │ │ │ ├── board.cmake │ │ │ ├── nice_nano.dts │ │ │ ├── nice_nano.yaml │ │ │ └── nice_nano_defconfig │ │ ├── nrf52840_m2 │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── board.cmake │ │ │ ├── nrf52840_m2.dts │ │ │ ├── nrf52840_m2.yaml │ │ │ └── nrf52840_m2_defconfig │ │ ├── nrfmicro │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── arduino_pro_micro_pins.dtsi │ │ │ ├── arduino_pro_micro_pins_flipped.dtsi │ │ │ ├── board.cmake │ │ │ ├── nrfmicro_11.dts │ │ │ ├── nrfmicro_11.yaml │ │ │ ├── nrfmicro_11_defconfig │ │ │ ├── nrfmicro_11_flipped.dts │ │ │ ├── nrfmicro_11_flipped.yaml │ │ │ ├── nrfmicro_11_flipped_defconfig │ │ │ ├── nrfmicro_13.dts │ │ │ ├── nrfmicro_13.yaml │ │ │ ├── nrfmicro_13_defconfig │ │ │ └── pinmux.c │ │ ├── planck │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── board.cmake │ │ │ ├── pinmux.c │ │ │ ├── planck_rev6.dts │ │ │ ├── planck_rev6.keymap │ │ │ ├── planck_rev6.yaml │ │ │ └── planck_rev6_defconfig │ │ └── proton_c │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.defconfig │ │ │ ├── arduino_pro_micro_pins.dtsi │ │ │ ├── board.cmake │ │ │ ├── pinmux.c │ │ │ ├── proton_c.dts │ │ │ ├── proton_c.yaml │ │ │ └── proton_c_defconfig │ ├── native_posix.conf │ ├── native_posix.overlay │ └── shields │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boardsource3x4 │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boardsource3x4.conf │ │ ├── boardsource3x4.keymap │ │ └── boardsource3x4.overlay │ │ ├── clueboard_california │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── clueboard_california.conf │ │ ├── clueboard_california.keymap │ │ ├── clueboard_california.overlay │ │ └── readme.md │ │ ├── corne │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ └── nice_nano.overlay │ │ ├── corne.conf │ │ ├── corne.dtsi │ │ ├── corne.keymap │ │ ├── corne_left.conf │ │ ├── corne_left.overlay │ │ ├── corne_right.conf │ │ └── corne_right.overlay │ │ ├── cradio │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── cradio.dtsi │ │ ├── cradio.keymap │ │ ├── cradio_left.conf │ │ ├── cradio_left.overlay │ │ ├── cradio_right.conf │ │ └── cradio_right.overlay │ │ ├── iris │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── iris.conf │ │ ├── iris.dtsi │ │ ├── iris.keymap │ │ ├── iris_left.conf │ │ ├── iris_left.overlay │ │ ├── iris_right.conf │ │ └── iris_right.overlay │ │ ├── jian │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── jian.conf │ │ ├── jian.dtsi │ │ ├── jian.keymap │ │ ├── jian_left.conf │ │ ├── jian_left.overlay │ │ ├── jian_right.conf │ │ └── jian_right.overlay │ │ ├── jorne │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ └── nice_nano.overlay │ │ ├── jorne.conf │ │ ├── jorne.dtsi │ │ ├── jorne.keymap │ │ ├── jorne_left.conf │ │ ├── jorne_left.overlay │ │ ├── jorne_right.conf │ │ └── jorne_right.overlay │ │ ├── kyria │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ ├── nice_nano.overlay │ │ │ ├── nrfmicro_11.overlay │ │ │ ├── nrfmicro_11_flipped.overlay │ │ │ └── nrfmicro_13.overlay │ │ ├── kyria.conf │ │ ├── kyria.dtsi │ │ ├── kyria.keymap │ │ ├── kyria_left.conf │ │ ├── kyria_left.overlay │ │ ├── kyria_right.conf │ │ └── kyria_right.overlay │ │ ├── lily58 │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── lily58.conf │ │ ├── lily58.dtsi │ │ ├── lily58.keymap │ │ ├── lily58_left.conf │ │ ├── lily58_left.overlay │ │ ├── lily58_right.conf │ │ └── lily58_right.overlay │ │ ├── m60 │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── m60.conf │ │ ├── m60.keymap │ │ ├── m60.overlay │ │ └── readme.md │ │ ├── microdox │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ └── nice_nano.overlay │ │ ├── microdox.conf │ │ ├── microdox.dtsi │ │ ├── microdox.keymap │ │ ├── microdox_left.conf │ │ ├── microdox_left.overlay │ │ ├── microdox_right.conf │ │ └── microdox_right.overlay │ │ ├── nibble │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── nibble.conf │ │ ├── nibble.keymap │ │ └── nibble.overlay │ │ ├── qaz │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── qaz.conf │ │ ├── qaz.keymap │ │ └── qaz.overlay │ │ ├── quefrency │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── quefrency.conf │ │ ├── quefrency.dtsi │ │ ├── quefrency.keymap │ │ ├── quefrency_left.conf │ │ ├── quefrency_left.overlay │ │ ├── quefrency_right.conf │ │ └── quefrency_right.overlay │ │ ├── reviung41 │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ └── nice_nano.overlay │ │ ├── reviung41.conf │ │ ├── reviung41.keymap │ │ └── reviung41.overlay │ │ ├── romac │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── romac.conf │ │ ├── romac.keymap │ │ └── romac.overlay │ │ ├── romac_plus │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── boards │ │ │ └── nice_nano.overlay │ │ ├── romac_plus.conf │ │ ├── romac_plus.dtsi │ │ ├── romac_plus.keymap │ │ └── romac_plus.overlay │ │ ├── settings_reset │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── settings_reset.conf │ │ ├── settings_reset.keymap │ │ └── settings_reset.overlay │ │ ├── sofle │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── sofle.conf │ │ ├── sofle.dtsi │ │ ├── sofle.keymap │ │ ├── sofle_left.conf │ │ ├── sofle_left.overlay │ │ ├── sofle_right.conf │ │ └── sofle_right.overlay │ │ ├── splitreus62 │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── splitreus62.conf │ │ ├── splitreus62.dtsi │ │ ├── splitreus62.keymap │ │ ├── splitreus62_left.conf │ │ ├── splitreus62_left.overlay │ │ ├── splitreus62_right.conf │ │ └── splitreus62_right.overlay │ │ └── tg4x │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.shield │ │ ├── tg4x.keymap │ │ └── tg4x.overlay ├── cmake │ └── zmk_config.cmake ├── drivers │ └── zephyr │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── battery_voltage_divider.c │ │ ├── dts │ │ └── bindings │ │ │ ├── alps,ec11.yaml │ │ │ ├── zmk,battery-voltage-divider.yaml │ │ │ ├── zmk,kscan-gpio-demux.yaml │ │ │ ├── zmk,kscan-gpio-direct.yaml │ │ │ └── zmk,kscan-gpio-matrix.yaml │ │ ├── ec11.c │ │ ├── ec11.h │ │ ├── ec11_trigger.c │ │ ├── kscan_gpio_demux.c │ │ ├── kscan_gpio_direct.c │ │ ├── kscan_gpio_matrix.c │ │ └── module.yml ├── dts │ ├── behaviors.dtsi │ ├── behaviors │ │ ├── bluetooth.dtsi │ │ ├── ext_power.dtsi │ │ ├── key_press.dtsi │ │ ├── layer_tap.dtsi │ │ ├── mod_tap.dtsi │ │ ├── momentary_layer.dtsi │ │ ├── none.dtsi │ │ ├── outputs.dtsi │ │ ├── reset.dtsi │ │ ├── rgb_underglow.dtsi │ │ ├── sensor_rotate_key_press.dtsi │ │ ├── toggle_layer.dtsi │ │ └── transparent.dtsi │ ├── bindings │ │ ├── behaviors │ │ │ ├── one_param.yaml │ │ │ ├── two_param.yaml │ │ │ ├── zero_param.yaml │ │ │ ├── zmk,behavior-bluetooth.yaml │ │ │ ├── zmk,behavior-combo.yaml │ │ │ ├── zmk,behavior-ext-power.yaml │ │ │ ├── zmk,behavior-hold-tap.yaml │ │ │ ├── zmk,behavior-key-press.yaml │ │ │ ├── zmk,behavior-momentary-layer.yaml │ │ │ ├── zmk,behavior-none.yaml │ │ │ ├── zmk,behavior-outputs.yaml │ │ │ ├── zmk,behavior-reset.yaml │ │ │ ├── zmk,behavior-rgb-underglow.yaml │ │ │ ├── zmk,behavior-sensor-rotate-key-press.yaml │ │ │ ├── zmk,behavior-toggle-layer.yaml │ │ │ └── zmk,behavior-transparent.yaml │ │ ├── zmk,ext-power-generic.yaml │ │ ├── zmk,keymap-sensors.yaml │ │ ├── zmk,keymap.yaml │ │ ├── zmk,kscan-composite.yaml │ │ ├── zmk,kscan-mock.yaml │ │ └── zmk,matrix-transform.yaml │ └── common │ │ └── arduino_uno_pro_micro_map.dtsi ├── include │ ├── drivers │ │ ├── behavior.h │ │ └── ext_power.h │ ├── dt-bindings │ │ └── zmk │ │ │ ├── bt.h │ │ │ ├── ext_power.h │ │ │ ├── hid_usage.h │ │ │ ├── hid_usage_pages.h │ │ │ ├── keys.h │ │ │ ├── kscan-mock.h │ │ │ ├── matrix-transform.h │ │ │ ├── modifiers.h │ │ │ ├── outputs.h │ │ │ ├── reset.h │ │ │ └── rgb.h │ ├── linker │ │ └── zmk-events.ld │ └── zmk │ │ ├── behavior.h │ │ ├── ble.h │ │ ├── ble │ │ └── profile.h │ │ ├── display.h │ │ ├── endpoints.h │ │ ├── event-manager.h │ │ ├── events │ │ ├── ble-active-profile-changed.h │ │ ├── keycode-state-changed.h │ │ ├── modifiers-state-changed.h │ │ ├── position-state-changed.h │ │ ├── sensor-event.h │ │ └── usb-conn-state-changed.h │ │ ├── handlers.h │ │ ├── hid.h │ │ ├── hog.h │ │ ├── keymap.h │ │ ├── keys.h │ │ ├── kscan.h │ │ ├── matrix.h │ │ ├── matrix_transform.h │ │ ├── rgb_underglow.h │ │ ├── sensors.h │ │ ├── split │ │ └── bluetooth │ │ │ ├── service.h │ │ │ └── uuid.h │ │ └── usb.h ├── prj.conf ├── run-test.sh ├── scripts │ ├── west-commands.yml │ └── west_commands │ │ └── test.py ├── src │ ├── battery.c │ ├── behaviors │ │ ├── behavior_bt.c │ │ ├── behavior_combo.c │ │ ├── behavior_ext_power.c │ │ ├── behavior_hold_tap.c │ │ ├── behavior_key_press.c │ │ ├── behavior_momentary_layer.c │ │ ├── behavior_none.c │ │ ├── behavior_outputs.c │ │ ├── behavior_reset.c │ │ ├── behavior_rgb_underglow.c │ │ ├── behavior_sensor_rotate_key_press.c │ │ ├── behavior_toggle_layer.c │ │ └── behavior_transparent.c │ ├── ble.c │ ├── display.c │ ├── endpoints.c │ ├── event_manager.c │ ├── events │ │ ├── ble_active_profile_changed.c │ │ ├── keycode_state_changed.c │ │ ├── modifiers_state_changed.c │ │ ├── position_state_changed.c │ │ ├── sensor_event.c │ │ └── usb_conn_state_changed.c │ ├── ext_power_generic.c │ ├── hid.c │ ├── hid_listener.c │ ├── hog.c │ ├── keymap.c │ ├── kscan.c │ ├── kscan_composite.c │ ├── kscan_mock.c │ ├── main.c │ ├── matrix_transform.c │ ├── power.c │ ├── rgb_underglow.c │ ├── sensors.c │ ├── settings.c │ ├── split │ │ └── bluetooth │ │ │ ├── central.c │ │ │ └── service.c │ ├── split_listener.c │ └── usb.c ├── tests │ ├── combo │ │ ├── press-release-out-of-order │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press-release-press-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press-timeout │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press1-press2-release1-release2 │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press1-press2-release2-release1 │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── press1-release1-press2-release2 │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── slowrelease-disabled │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ └── slowrelease-enabled │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ ├── hold-tap │ │ ├── README.md │ │ ├── balanced │ │ │ ├── 1-dn-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 2-dn-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3a-moddn-dn-modup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3b-moddn-dn-modup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3c-kcdn-dn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3d-kcdn-dn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-htdn-timer-htup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-kcdn-timer-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4b-dn-kcdn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4c-dn-kcdn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4d-dn-kcdn-timer-up-kcup │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── behavior_keymap.dtsi │ │ │ └── many-nested │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ ├── hold-preferred │ │ │ ├── 1-dn-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 2-dn-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3a-moddn-dn-modup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3b-moddn-dn-modup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3c-kcdn-dn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3d-kcdn-dn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-htdn-timer-htup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-kcdn-timer-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4b-dn-kcdn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4c-dn-kcdn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4d-dn-kcdn-timer-up-kcup │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ └── behavior_keymap.dtsi │ │ ├── tap-preferred │ │ │ ├── 1-dn-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 2-dn-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3a-moddn-dn-modup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3b-moddn-dn-modup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3c-kcdn-dn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 3d-kcdn-dn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-htdn-timer-htup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4a-dn-kcdn-timer-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4b-dn-kcdn-kcup-timer-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4c-dn-kcdn-kcup-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── 4d-dn-kcdn-timer-up-kcup │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ └── behavior_keymap.dtsi │ │ ├── zmk-modtap-proposal.odg │ │ └── zmk-modtap-proposal.pdf │ ├── keypress │ │ ├── behavior_keymap.dtsi │ │ ├── cp-press-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ └── kp-press-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ ├── modifiers │ │ ├── explicit │ │ │ ├── kp-lctl-dn-lctl-dn-lctl-up-lctl-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── kp-lctl-dn-lctl-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ ├── kp-lctl-dn-lsft-dn-lctl-up-lsft-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ │ └── kp-lctl-dn-lsft-dn-lsft-up-lctl-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ ├── implicit │ │ │ ├── kp-mod1-dn-mod2-dn-mod1-up-mod2-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ ├── native_posix.keymap │ │ │ │ └── pending │ │ │ └── kp-mod1-dn-mod2-dn-mod2-up-mod1-up │ │ │ │ ├── events.patterns │ │ │ │ ├── keycode_events.snapshot │ │ │ │ └── native_posix.keymap │ │ └── mixed │ │ │ ├── kp-lctl-dn-mod-dn-lctl-up-mod-up │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ │ └── kp-lctl-dn-mod-dn-mod-up-lctl-up │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ ├── momentary-layer │ │ ├── 1-normal │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── 2-early-key-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── 3-covered │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── 4-nested │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ ├── 5-nested-early-key-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ └── behavior_keymap.dtsi │ ├── none │ │ ├── behavior_keymap.dtsi │ │ ├── layered │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ └── normal │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ ├── toggle-layer │ │ ├── behavior_keymap.dtsi │ │ ├── early-key-release │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ │ └── normal │ │ │ ├── events.patterns │ │ │ ├── keycode_events.snapshot │ │ │ └── native_posix.keymap │ └── transparent │ │ ├── behavior_keymap.dtsi │ │ ├── layered │ │ ├── events.patterns │ │ ├── keycode_events.snapshot │ │ └── native_posix.keymap │ │ └── normal │ │ ├── events.patterns │ │ ├── keycode_events.snapshot │ │ └── native_posix.keymap └── west.yml └── docs ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── README.md ├── blog ├── 2020-05-24-wip.md ├── 2020-08-12-zmk-sotf-1.md ├── 2020-09-21-zmk-sotf-2.md ├── 2020-10-03-bootloader-fix.md └── 2020-11-09-zmk-sotf-3.md ├── docs ├── assets │ ├── dev-setup │ │ └── vscode_devcontainer.png │ ├── env-var │ │ ├── env_var.png │ │ ├── gnuarmemb.png │ │ ├── new_variable.png │ │ ├── start_menu.png │ │ └── zephyr_toolchain.png │ ├── features │ │ └── keymaps │ │ │ └── layer-diagram.png │ ├── hold-tap │ │ ├── case1_2.png │ │ ├── case_hold_preferred.png │ │ └── comparison.png │ ├── pro-micro │ │ └── pro-micro-pins-labelled.jpg │ ├── troubleshooting │ │ ├── filetransfer │ │ │ ├── linux.png │ │ │ ├── mac.png │ │ │ └── windows.png │ │ └── keymaps │ │ │ ├── errorscreen.png │ │ │ ├── healthyEDIT.png │ │ │ └── unhealthyEDIT.png │ ├── usb-logging │ │ ├── com.jpg │ │ └── putty.jpg │ └── user-setup │ │ ├── firmware-archive.png │ │ └── github-actions-link.png ├── behaviors │ ├── bluetooth.md │ ├── hold-tap.md │ ├── key-press.md │ ├── layers.md │ ├── lighting.md │ ├── misc.md │ ├── mod-tap.md │ ├── outputs.md │ ├── power.md │ └── reset.md ├── codes │ ├── _applications.mdx │ ├── _editing.mdx │ ├── _footnotes │ │ └── example.mdx │ ├── _input-assist.mdx │ ├── _keyboard-keypad.mdx │ ├── _media.mdx │ ├── _power.mdx │ ├── applications.mdx │ ├── editing.mdx │ ├── index.mdx │ ├── input-assist.mdx │ ├── keyboard-keypad.mdx │ ├── media.mdx │ ├── modifiers.mdx │ └── power.mdx ├── customization.md ├── development │ ├── boards-shields-keymaps.md │ ├── build-flash.md │ ├── clean-room.md │ ├── new-shield.md │ ├── posix-board.md │ ├── setup.md │ ├── tests.md │ └── usb-logging.md ├── faq.md ├── features │ ├── displays.md │ ├── encoders.md │ ├── keymaps.md │ └── underglow.md ├── hardware.md ├── intro.md ├── keymap-example-file.md ├── keymap-example.md ├── troubleshooting.md └── user-setup.md ├── docusaurus.config.js ├── netlify.toml ├── package-lock.json ├── package.json ├── sidebars.js ├── src ├── components │ └── codes │ │ ├── Context.jsx │ │ ├── Description.jsx │ │ ├── Footnote.jsx │ │ ├── FootnoteRef.jsx │ │ ├── FootnoteRefs.jsx │ │ ├── Footnotes.jsx │ │ ├── LinkIcon.jsx │ │ ├── Name.jsx │ │ ├── OsLegend.jsx │ │ ├── OsSupport.jsx │ │ ├── OsSupportIcon.jsx │ │ ├── Table.jsx │ │ ├── TableRow.jsx │ │ ├── ToastyContainer.jsx │ │ └── ToastyCopyToClipboard.jsx ├── css │ ├── codes.css │ └── custom.css ├── data │ ├── footnotes.js │ ├── groups.js │ ├── hid-applications.js │ ├── hid-usage-pages.js │ ├── hid.js │ └── operating-systems.js ├── footnotes.js ├── groups.js ├── hid-usage.js ├── hid.js └── pages │ ├── index.js │ └── styles.module.css └── static ├── img ├── favicon.ico ├── undraw_open_source.svg ├── undraw_wireless.svg ├── undraw_zephyr.svg └── zmk_logo.svg ├── setup.ps1 └── setup.sh /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | SortIncludes: false 5 | -------------------------------------------------------------------------------- /.devcontainer/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.devcontainer/.bashrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.github/workflows/clang-format-lint.yml -------------------------------------------------------------------------------- /.github/workflows/doc-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.github/workflows/doc-checks.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/Kconfig -------------------------------------------------------------------------------- /app/boards/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/Kconfig -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/Kconfig -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/arduino_pro_micro_pins.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/arduino_pro_micro_pins.dtsi -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/bluemicro840_v1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/bluemicro840_v1.dts -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/bluemicro840_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/bluemicro840_v1.yaml -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/bluemicro840_v1_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/bluemicro840_v1_defconfig -------------------------------------------------------------------------------- /app/boards/arm/bluemicro840/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/bluemicro840/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/dz60rgb_rev1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/dz60rgb_rev1.dts -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/dz60rgb_rev1.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/dz60rgb_rev1.keymap -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/dz60rgb_rev1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/dz60rgb_rev1.yaml -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/dz60rgb_rev1_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/dz60rgb_rev1_defconfig -------------------------------------------------------------------------------- /app/boards/arm/dz60rgb/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/dz60rgb/pinmux.c -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/Kconfig -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/arduino_pro_micro_pins.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/arduino_pro_micro_pins.dtsi -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/nice_nano.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/nice_nano.dts -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/nice_nano.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/nice_nano.yaml -------------------------------------------------------------------------------- /app/boards/arm/nice_nano/nice_nano_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nice_nano/nice_nano_defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/Kconfig -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/nrf52840_m2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/nrf52840_m2.dts -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/nrf52840_m2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/nrf52840_m2.yaml -------------------------------------------------------------------------------- /app/boards/arm/nrf52840_m2/nrf52840_m2_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrf52840_m2/nrf52840_m2_defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/Kconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/arduino_pro_micro_pins.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/arduino_pro_micro_pins.dtsi -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/arduino_pro_micro_pins_flipped.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/arduino_pro_micro_pins_flipped.dtsi -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11.dts -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11.yaml -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11_defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11_flipped.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11_flipped.dts -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11_flipped.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11_flipped.yaml -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_11_flipped_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_11_flipped_defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_13.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_13.dts -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_13.yaml -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/nrfmicro_13_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/nrfmicro_13_defconfig -------------------------------------------------------------------------------- /app/boards/arm/nrfmicro/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/nrfmicro/pinmux.c -------------------------------------------------------------------------------- /app/boards/arm/planck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/planck/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/planck/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/planck/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/planck/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/pinmux.c -------------------------------------------------------------------------------- /app/boards/arm/planck/planck_rev6.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/planck_rev6.dts -------------------------------------------------------------------------------- /app/boards/arm/planck/planck_rev6.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/planck_rev6.keymap -------------------------------------------------------------------------------- /app/boards/arm/planck/planck_rev6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/planck_rev6.yaml -------------------------------------------------------------------------------- /app/boards/arm/planck/planck_rev6_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/planck/planck_rev6_defconfig -------------------------------------------------------------------------------- /app/boards/arm/proton_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/arm/proton_c/Kconfig.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/Kconfig.board -------------------------------------------------------------------------------- /app/boards/arm/proton_c/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/arm/proton_c/arduino_pro_micro_pins.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/arduino_pro_micro_pins.dtsi -------------------------------------------------------------------------------- /app/boards/arm/proton_c/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/board.cmake -------------------------------------------------------------------------------- /app/boards/arm/proton_c/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/pinmux.c -------------------------------------------------------------------------------- /app/boards/arm/proton_c/proton_c.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/proton_c.dts -------------------------------------------------------------------------------- /app/boards/arm/proton_c/proton_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/proton_c.yaml -------------------------------------------------------------------------------- /app/boards/arm/proton_c/proton_c_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/arm/proton_c/proton_c_defconfig -------------------------------------------------------------------------------- /app/boards/native_posix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/native_posix.conf -------------------------------------------------------------------------------- /app/boards/native_posix.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/native_posix.overlay -------------------------------------------------------------------------------- /app/boards/shields/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/boardsource3x4/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/boardsource3x4/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/boardsource3x4/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/boardsource3x4/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/boardsource3x4/boardsource3x4.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/boardsource3x4/boardsource3x4.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/boardsource3x4/boardsource3x4.keymap -------------------------------------------------------------------------------- /app/boards/shields/boardsource3x4/boardsource3x4.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/boardsource3x4/boardsource3x4.overlay -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/clueboard_california/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/clueboard_california/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/clueboard_california.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/clueboard_california.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/clueboard_california/clueboard_california.keymap -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/clueboard_california.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/clueboard_california/clueboard_california.overlay -------------------------------------------------------------------------------- /app/boards/shields/clueboard_california/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/clueboard_california/readme.md -------------------------------------------------------------------------------- /app/boards/shields/corne/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/corne/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/corne/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/corne/corne.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne.conf -------------------------------------------------------------------------------- /app/boards/shields/corne/corne.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne.dtsi -------------------------------------------------------------------------------- /app/boards/shields/corne/corne.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne.keymap -------------------------------------------------------------------------------- /app/boards/shields/corne/corne_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne_left.conf -------------------------------------------------------------------------------- /app/boards/shields/corne/corne_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/corne/corne_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne_right.conf -------------------------------------------------------------------------------- /app/boards/shields/corne/corne_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/corne/corne_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/cradio/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/cradio/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio.dtsi -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio.keymap -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio_left.conf -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio_right.conf -------------------------------------------------------------------------------- /app/boards/shields/cradio/cradio_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/cradio/cradio_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/iris/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/iris/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/iris/iris.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/iris/iris.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris.dtsi -------------------------------------------------------------------------------- /app/boards/shields/iris/iris.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris.keymap -------------------------------------------------------------------------------- /app/boards/shields/iris/iris_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris_left.conf -------------------------------------------------------------------------------- /app/boards/shields/iris/iris_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/iris/iris_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris_right.conf -------------------------------------------------------------------------------- /app/boards/shields/iris/iris_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/iris/iris_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/jian/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/jian/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/jian/jian.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/jian/jian.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian.dtsi -------------------------------------------------------------------------------- /app/boards/shields/jian/jian.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian.keymap -------------------------------------------------------------------------------- /app/boards/shields/jian/jian_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian_left.conf -------------------------------------------------------------------------------- /app/boards/shields/jian/jian_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/jian/jian_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian_right.conf -------------------------------------------------------------------------------- /app/boards/shields/jian/jian_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jian/jian_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/jorne/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/jorne/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/jorne/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne.conf -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne.dtsi -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne.keymap -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne_left.conf -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne_right.conf -------------------------------------------------------------------------------- /app/boards/shields/jorne/jorne_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/jorne/jorne_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/kyria/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/kyria/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/boards/nrfmicro_11.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/boards/nrfmicro_11.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/boards/nrfmicro_11_flipped.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/boards/nrfmicro_11_flipped.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/boards/nrfmicro_13.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/boards/nrfmicro_13.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria.conf -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria.dtsi -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria.keymap -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria_left.conf -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria_right.conf -------------------------------------------------------------------------------- /app/boards/shields/kyria/kyria_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/kyria/kyria_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/lily58/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/lily58/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58.conf -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58.dtsi -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58.keymap -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58_left.conf -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58_right.conf -------------------------------------------------------------------------------- /app/boards/shields/lily58/lily58_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/lily58/lily58_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/m60/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/m60/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/m60/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/m60/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/m60/m60.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/m60/m60.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/m60/m60.keymap -------------------------------------------------------------------------------- /app/boards/shields/m60/m60.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/m60/m60.overlay -------------------------------------------------------------------------------- /app/boards/shields/m60/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/m60/readme.md -------------------------------------------------------------------------------- /app/boards/shields/microdox/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/microdox/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/microdox/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox.conf -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox.dtsi -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox.keymap -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox_left.conf -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox_right.conf -------------------------------------------------------------------------------- /app/boards/shields/microdox/microdox_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/microdox/microdox_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/nibble/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/nibble/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/nibble/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/nibble/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/nibble/nibble.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/nibble/nibble.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/nibble/nibble.keymap -------------------------------------------------------------------------------- /app/boards/shields/nibble/nibble.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/nibble/nibble.overlay -------------------------------------------------------------------------------- /app/boards/shields/qaz/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/qaz/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/qaz/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/qaz/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/qaz/qaz.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/qaz/qaz.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/qaz/qaz.keymap -------------------------------------------------------------------------------- /app/boards/shields/qaz/qaz.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/qaz/qaz.overlay -------------------------------------------------------------------------------- /app/boards/shields/quefrency/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/quefrency/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency.dtsi -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency.keymap -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency_left.conf -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency_right.conf -------------------------------------------------------------------------------- /app/boards/shields/quefrency/quefrency_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/quefrency/quefrency_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/reviung41/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/reviung41/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/reviung41/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/reviung41/reviung41.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/reviung41.conf -------------------------------------------------------------------------------- /app/boards/shields/reviung41/reviung41.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/reviung41.keymap -------------------------------------------------------------------------------- /app/boards/shields/reviung41/reviung41.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/reviung41/reviung41.overlay -------------------------------------------------------------------------------- /app/boards/shields/romac/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/romac/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/romac/romac.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/romac/romac.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac/romac.keymap -------------------------------------------------------------------------------- /app/boards/shields/romac/romac.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac/romac.overlay -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/boards/nice_nano.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/boards/nice_nano.overlay -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/romac_plus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/romac_plus.conf -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/romac_plus.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/romac_plus.dtsi -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/romac_plus.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/romac_plus.keymap -------------------------------------------------------------------------------- /app/boards/shields/romac_plus/romac_plus.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/romac_plus/romac_plus.overlay -------------------------------------------------------------------------------- /app/boards/shields/settings_reset/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/settings_reset/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/settings_reset/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/settings_reset/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/settings_reset/settings_reset.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ZMK_BLE_CLEAR_BONDS_ON_START=y 2 | -------------------------------------------------------------------------------- /app/boards/shields/settings_reset/settings_reset.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/settings_reset/settings_reset.keymap -------------------------------------------------------------------------------- /app/boards/shields/settings_reset/settings_reset.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/settings_reset/settings_reset.overlay -------------------------------------------------------------------------------- /app/boards/shields/sofle/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/sofle/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle.conf -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle.dtsi -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle.keymap -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle_left.conf -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle_right.conf -------------------------------------------------------------------------------- /app/boards/shields/sofle/sofle_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/sofle/sofle_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62.dtsi -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62.keymap -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62_left.conf -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62_left.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62_left.overlay -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62_right.conf -------------------------------------------------------------------------------- /app/boards/shields/splitreus62/splitreus62_right.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/splitreus62/splitreus62_right.overlay -------------------------------------------------------------------------------- /app/boards/shields/tg4x/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/tg4x/Kconfig.defconfig -------------------------------------------------------------------------------- /app/boards/shields/tg4x/Kconfig.shield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/tg4x/Kconfig.shield -------------------------------------------------------------------------------- /app/boards/shields/tg4x/tg4x.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/tg4x/tg4x.keymap -------------------------------------------------------------------------------- /app/boards/shields/tg4x/tg4x.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/boards/shields/tg4x/tg4x.overlay -------------------------------------------------------------------------------- /app/cmake/zmk_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/cmake/zmk_config.cmake -------------------------------------------------------------------------------- /app/drivers/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /app/drivers/zephyr/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/Kconfig -------------------------------------------------------------------------------- /app/drivers/zephyr/battery_voltage_divider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/battery_voltage_divider.c -------------------------------------------------------------------------------- /app/drivers/zephyr/dts/bindings/alps,ec11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/dts/bindings/alps,ec11.yaml -------------------------------------------------------------------------------- /app/drivers/zephyr/dts/bindings/zmk,battery-voltage-divider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/dts/bindings/zmk,battery-voltage-divider.yaml -------------------------------------------------------------------------------- /app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml -------------------------------------------------------------------------------- /app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-direct.yaml -------------------------------------------------------------------------------- /app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-matrix.yaml -------------------------------------------------------------------------------- /app/drivers/zephyr/ec11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/ec11.c -------------------------------------------------------------------------------- /app/drivers/zephyr/ec11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/ec11.h -------------------------------------------------------------------------------- /app/drivers/zephyr/ec11_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/ec11_trigger.c -------------------------------------------------------------------------------- /app/drivers/zephyr/kscan_gpio_demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/kscan_gpio_demux.c -------------------------------------------------------------------------------- /app/drivers/zephyr/kscan_gpio_direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/kscan_gpio_direct.c -------------------------------------------------------------------------------- /app/drivers/zephyr/kscan_gpio_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/kscan_gpio_matrix.c -------------------------------------------------------------------------------- /app/drivers/zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/drivers/zephyr/module.yml -------------------------------------------------------------------------------- /app/dts/behaviors.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/bluetooth.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/bluetooth.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/ext_power.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/ext_power.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/key_press.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/key_press.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/layer_tap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/layer_tap.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/mod_tap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/mod_tap.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/momentary_layer.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/momentary_layer.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/none.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/none.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/outputs.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/outputs.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/reset.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/reset.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/rgb_underglow.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/rgb_underglow.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/sensor_rotate_key_press.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/sensor_rotate_key_press.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/toggle_layer.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/toggle_layer.dtsi -------------------------------------------------------------------------------- /app/dts/behaviors/transparent.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/behaviors/transparent.dtsi -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/one_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/one_param.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/two_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/two_param.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zero_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zero_param.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-bluetooth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-bluetooth.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-combo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-combo.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-ext-power.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-ext-power.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-key-press.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-key-press.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-momentary-layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-momentary-layer.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-none.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-outputs.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-reset.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-rgb-underglow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-rgb-underglow.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-sensor-rotate-key-press.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-sensor-rotate-key-press.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-toggle-layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-toggle-layer.yaml -------------------------------------------------------------------------------- /app/dts/bindings/behaviors/zmk,behavior-transparent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/behaviors/zmk,behavior-transparent.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,ext-power-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,ext-power-generic.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,keymap-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,keymap-sensors.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,keymap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,keymap.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,kscan-composite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,kscan-composite.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,kscan-mock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,kscan-mock.yaml -------------------------------------------------------------------------------- /app/dts/bindings/zmk,matrix-transform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/bindings/zmk,matrix-transform.yaml -------------------------------------------------------------------------------- /app/dts/common/arduino_uno_pro_micro_map.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/dts/common/arduino_uno_pro_micro_map.dtsi -------------------------------------------------------------------------------- /app/include/drivers/behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/drivers/behavior.h -------------------------------------------------------------------------------- /app/include/drivers/ext_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/drivers/ext_power.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/bt.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/ext_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/ext_power.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/hid_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/hid_usage.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/hid_usage_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/hid_usage_pages.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/keys.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/kscan-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/kscan-mock.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/matrix-transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/matrix-transform.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/modifiers.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/outputs.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/reset.h -------------------------------------------------------------------------------- /app/include/dt-bindings/zmk/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/dt-bindings/zmk/rgb.h -------------------------------------------------------------------------------- /app/include/linker/zmk-events.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/linker/zmk-events.ld -------------------------------------------------------------------------------- /app/include/zmk/behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/behavior.h -------------------------------------------------------------------------------- /app/include/zmk/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/ble.h -------------------------------------------------------------------------------- /app/include/zmk/ble/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/ble/profile.h -------------------------------------------------------------------------------- /app/include/zmk/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/display.h -------------------------------------------------------------------------------- /app/include/zmk/endpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/endpoints.h -------------------------------------------------------------------------------- /app/include/zmk/event-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/event-manager.h -------------------------------------------------------------------------------- /app/include/zmk/events/ble-active-profile-changed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/ble-active-profile-changed.h -------------------------------------------------------------------------------- /app/include/zmk/events/keycode-state-changed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/keycode-state-changed.h -------------------------------------------------------------------------------- /app/include/zmk/events/modifiers-state-changed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/modifiers-state-changed.h -------------------------------------------------------------------------------- /app/include/zmk/events/position-state-changed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/position-state-changed.h -------------------------------------------------------------------------------- /app/include/zmk/events/sensor-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/sensor-event.h -------------------------------------------------------------------------------- /app/include/zmk/events/usb-conn-state-changed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/events/usb-conn-state-changed.h -------------------------------------------------------------------------------- /app/include/zmk/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/handlers.h -------------------------------------------------------------------------------- /app/include/zmk/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/hid.h -------------------------------------------------------------------------------- /app/include/zmk/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/hog.h -------------------------------------------------------------------------------- /app/include/zmk/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/keymap.h -------------------------------------------------------------------------------- /app/include/zmk/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/keys.h -------------------------------------------------------------------------------- /app/include/zmk/kscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/kscan.h -------------------------------------------------------------------------------- /app/include/zmk/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/matrix.h -------------------------------------------------------------------------------- /app/include/zmk/matrix_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/matrix_transform.h -------------------------------------------------------------------------------- /app/include/zmk/rgb_underglow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/rgb_underglow.h -------------------------------------------------------------------------------- /app/include/zmk/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/sensors.h -------------------------------------------------------------------------------- /app/include/zmk/split/bluetooth/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/split/bluetooth/service.h -------------------------------------------------------------------------------- /app/include/zmk/split/bluetooth/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/split/bluetooth/uuid.h -------------------------------------------------------------------------------- /app/include/zmk/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/include/zmk/usb.h -------------------------------------------------------------------------------- /app/prj.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/run-test.sh -------------------------------------------------------------------------------- /app/scripts/west-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/scripts/west-commands.yml -------------------------------------------------------------------------------- /app/scripts/west_commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/scripts/west_commands/test.py -------------------------------------------------------------------------------- /app/src/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/battery.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_bt.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_combo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_combo.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_ext_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_ext_power.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_hold_tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_hold_tap.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_key_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_key_press.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_momentary_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_momentary_layer.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_none.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_outputs.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_reset.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_rgb_underglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_rgb_underglow.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_sensor_rotate_key_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_sensor_rotate_key_press.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_toggle_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_toggle_layer.c -------------------------------------------------------------------------------- /app/src/behaviors/behavior_transparent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/behaviors/behavior_transparent.c -------------------------------------------------------------------------------- /app/src/ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/ble.c -------------------------------------------------------------------------------- /app/src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/display.c -------------------------------------------------------------------------------- /app/src/endpoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/endpoints.c -------------------------------------------------------------------------------- /app/src/event_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/event_manager.c -------------------------------------------------------------------------------- /app/src/events/ble_active_profile_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/ble_active_profile_changed.c -------------------------------------------------------------------------------- /app/src/events/keycode_state_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/keycode_state_changed.c -------------------------------------------------------------------------------- /app/src/events/modifiers_state_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/modifiers_state_changed.c -------------------------------------------------------------------------------- /app/src/events/position_state_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/position_state_changed.c -------------------------------------------------------------------------------- /app/src/events/sensor_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/sensor_event.c -------------------------------------------------------------------------------- /app/src/events/usb_conn_state_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/events/usb_conn_state_changed.c -------------------------------------------------------------------------------- /app/src/ext_power_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/ext_power_generic.c -------------------------------------------------------------------------------- /app/src/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/hid.c -------------------------------------------------------------------------------- /app/src/hid_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/hid_listener.c -------------------------------------------------------------------------------- /app/src/hog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/hog.c -------------------------------------------------------------------------------- /app/src/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/keymap.c -------------------------------------------------------------------------------- /app/src/kscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/kscan.c -------------------------------------------------------------------------------- /app/src/kscan_composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/kscan_composite.c -------------------------------------------------------------------------------- /app/src/kscan_mock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/kscan_mock.c -------------------------------------------------------------------------------- /app/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/main.c -------------------------------------------------------------------------------- /app/src/matrix_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/matrix_transform.c -------------------------------------------------------------------------------- /app/src/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/power.c -------------------------------------------------------------------------------- /app/src/rgb_underglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/rgb_underglow.c -------------------------------------------------------------------------------- /app/src/sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/sensors.c -------------------------------------------------------------------------------- /app/src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/settings.c -------------------------------------------------------------------------------- /app/src/split/bluetooth/central.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/split/bluetooth/central.c -------------------------------------------------------------------------------- /app/src/split/bluetooth/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/split/bluetooth/service.c -------------------------------------------------------------------------------- /app/src/split_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/split_listener.c -------------------------------------------------------------------------------- /app/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/src/usb.c -------------------------------------------------------------------------------- /app/tests/combo/press-release-out-of-order/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/press-release-out-of-order/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release-out-of-order/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press-release-out-of-order/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release-out-of-order/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press-release-press-release/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/press-release-press-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release-press-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press-release-press-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release-press-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press-release/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/press-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press-timeout/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/press-timeout/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-timeout/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press-timeout/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press-timeout/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release1-release2/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release1-release2/events.patterns -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release1-release2/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release1-release2/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release1-release2/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release1-release2/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release2-release1/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release2-release1/events.patterns -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release2-release1/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release2-release1/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press1-press2-release2-release1/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-press2-release2-release1/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/press1-release1-press2-release2/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-release1-press2-release2/events.patterns -------------------------------------------------------------------------------- /app/tests/combo/press1-release1-press2-release2/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-release1-press2-release2/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/press1-release1-press2-release2/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/press1-release1-press2-release2/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-disabled/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-disabled/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/slowrelease-disabled/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-disabled/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/slowrelease-disabled/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-enabled/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p 2 | -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-enabled/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/slowrelease-enabled/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/combo/slowrelease-enabled/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/combo/slowrelease-enabled/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/README.md -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/1-dn-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/1-dn-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/1-dn-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/1-dn-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/1-dn-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/1-dn-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/2-dn-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/2-dn-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/2-dn-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/2-dn-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/2-dn-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/2-dn-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3a-moddn-dn-modup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3b-moddn-dn-modup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3c-kcdn-dn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/3d-kcdn-dn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-htdn-timer-htup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4a-dn-kcdn-timer-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4b-dn-kcdn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4c-dn-kcdn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/4d-dn-kcdn-timer-up-kcup/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/many-nested/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/many-nested/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/many-nested/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/many-nested/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/balanced/many-nested/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/balanced/many-nested/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/1-dn-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/1-dn-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/1-dn-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/1-dn-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/1-dn-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/1-dn-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/2-dn-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/2-dn-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/2-dn-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/2-dn-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/2-dn-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/2-dn-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3a-moddn-dn-modup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3b-moddn-dn-modup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3c-kcdn-dn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/3d-kcdn-dn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-htdn-timer-htup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4a-dn-kcdn-timer-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4b-dn-kcdn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4c-dn-kcdn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/4d-dn-kcdn-timer-up-kcup/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/hold-preferred/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/hold-preferred/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/1-dn-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/1-dn-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/1-dn-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/1-dn-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/1-dn-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/1-dn-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/2-dn-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/2-dn-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/2-dn-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/2-dn-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/2-dn-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/2-dn-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3a-moddn-dn-modup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3b-moddn-dn-modup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3c-kcdn-dn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/3d-kcdn-dn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-htdn-timer-htup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4a-dn-kcdn-timer-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4b-dn-kcdn-kcup-timer-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4c-dn-kcdn-kcup-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/events.patterns -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/4d-dn-kcdn-timer-up-kcup/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/hold-tap/tap-preferred/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/tap-preferred/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/hold-tap/zmk-modtap-proposal.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/zmk-modtap-proposal.odg -------------------------------------------------------------------------------- /app/tests/hold-tap/zmk-modtap-proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/hold-tap/zmk-modtap-proposal.pdf -------------------------------------------------------------------------------- /app/tests/keypress/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/keypress/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/keypress/cp-press-release/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p -------------------------------------------------------------------------------- /app/tests/keypress/cp-press-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/keypress/cp-press-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/keypress/cp-press-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/keypress/cp-press-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/keypress/kp-press-release/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode_//p -------------------------------------------------------------------------------- /app/tests/keypress/kp-press-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/keypress/kp-press-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/keypress/kp-press-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/keypress/kp-press-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-dn-lctl-up-lctl-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lctl-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lctl-up-lsft-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/explicit/kp-lctl-dn-lsft-dn-lsft-up-lctl-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/pending: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod1-up-mod2-up/pending -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/implicit/kp-mod1-dn-mod2-dn-mod2-up-mod1-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-lctl-up-mod-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/events.patterns -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/modifiers/mixed/kp-lctl-dn-mod-dn-mod-up-lctl-up/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/1-normal/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/1-normal/events.patterns -------------------------------------------------------------------------------- /app/tests/momentary-layer/1-normal/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/1-normal/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/momentary-layer/1-normal/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/1-normal/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/2-early-key-release/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/2-early-key-release/events.patterns -------------------------------------------------------------------------------- /app/tests/momentary-layer/2-early-key-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/2-early-key-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/momentary-layer/2-early-key-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/2-early-key-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/3-covered/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/3-covered/events.patterns -------------------------------------------------------------------------------- /app/tests/momentary-layer/3-covered/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/3-covered/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/momentary-layer/3-covered/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/3-covered/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/4-nested/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/4-nested/events.patterns -------------------------------------------------------------------------------- /app/tests/momentary-layer/4-nested/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/4-nested/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/momentary-layer/4-nested/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/4-nested/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/5-nested-early-key-release/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/5-nested-early-key-release/events.patterns -------------------------------------------------------------------------------- /app/tests/momentary-layer/5-nested-early-key-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/5-nested-early-key-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/momentary-layer/5-nested-early-key-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/5-nested-early-key-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/momentary-layer/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/momentary-layer/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/none/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/none/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/none/layered/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode/kp/p -------------------------------------------------------------------------------- /app/tests/none/layered/keycode_events.snapshot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/none/layered/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/none/layered/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/none/normal/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode/kp/p -------------------------------------------------------------------------------- /app/tests/none/normal/keycode_events.snapshot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/none/normal/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/none/normal/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/toggle-layer/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/toggle-layer/early-key-release/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/early-key-release/events.patterns -------------------------------------------------------------------------------- /app/tests/toggle-layer/early-key-release/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/early-key-release/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/toggle-layer/early-key-release/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/early-key-release/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/toggle-layer/normal/events.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/normal/events.patterns -------------------------------------------------------------------------------- /app/tests/toggle-layer/normal/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/normal/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/toggle-layer/normal/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/toggle-layer/normal/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/transparent/behavior_keymap.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/transparent/behavior_keymap.dtsi -------------------------------------------------------------------------------- /app/tests/transparent/layered/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode/kp/p -------------------------------------------------------------------------------- /app/tests/transparent/layered/keycode_events.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/transparent/layered/keycode_events.snapshot -------------------------------------------------------------------------------- /app/tests/transparent/layered/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/transparent/layered/native_posix.keymap -------------------------------------------------------------------------------- /app/tests/transparent/normal/events.patterns: -------------------------------------------------------------------------------- 1 | s/.*hid_listener_keycode/kp/p -------------------------------------------------------------------------------- /app/tests/transparent/normal/keycode_events.snapshot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/transparent/normal/native_posix.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/tests/transparent/normal/native_posix.keymap -------------------------------------------------------------------------------- /app/west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/app/west.yml -------------------------------------------------------------------------------- /docs/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /docs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/.eslintrc.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /docs/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .docusaurus -------------------------------------------------------------------------------- /docs/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | endOfLine: "auto", 3 | }; 4 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blog/2020-05-24-wip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/blog/2020-05-24-wip.md -------------------------------------------------------------------------------- /docs/blog/2020-08-12-zmk-sotf-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/blog/2020-08-12-zmk-sotf-1.md -------------------------------------------------------------------------------- /docs/blog/2020-09-21-zmk-sotf-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/blog/2020-09-21-zmk-sotf-2.md -------------------------------------------------------------------------------- /docs/blog/2020-10-03-bootloader-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/blog/2020-10-03-bootloader-fix.md -------------------------------------------------------------------------------- /docs/blog/2020-11-09-zmk-sotf-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/blog/2020-11-09-zmk-sotf-3.md -------------------------------------------------------------------------------- /docs/docs/assets/dev-setup/vscode_devcontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/dev-setup/vscode_devcontainer.png -------------------------------------------------------------------------------- /docs/docs/assets/env-var/env_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/env-var/env_var.png -------------------------------------------------------------------------------- /docs/docs/assets/env-var/gnuarmemb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/env-var/gnuarmemb.png -------------------------------------------------------------------------------- /docs/docs/assets/env-var/new_variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/env-var/new_variable.png -------------------------------------------------------------------------------- /docs/docs/assets/env-var/start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/env-var/start_menu.png -------------------------------------------------------------------------------- /docs/docs/assets/env-var/zephyr_toolchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/env-var/zephyr_toolchain.png -------------------------------------------------------------------------------- /docs/docs/assets/features/keymaps/layer-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/features/keymaps/layer-diagram.png -------------------------------------------------------------------------------- /docs/docs/assets/hold-tap/case1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/hold-tap/case1_2.png -------------------------------------------------------------------------------- /docs/docs/assets/hold-tap/case_hold_preferred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/hold-tap/case_hold_preferred.png -------------------------------------------------------------------------------- /docs/docs/assets/hold-tap/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/hold-tap/comparison.png -------------------------------------------------------------------------------- /docs/docs/assets/pro-micro/pro-micro-pins-labelled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/pro-micro/pro-micro-pins-labelled.jpg -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/filetransfer/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/filetransfer/linux.png -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/filetransfer/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/filetransfer/mac.png -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/filetransfer/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/filetransfer/windows.png -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/keymaps/errorscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/keymaps/errorscreen.png -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/keymaps/healthyEDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/keymaps/healthyEDIT.png -------------------------------------------------------------------------------- /docs/docs/assets/troubleshooting/keymaps/unhealthyEDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/troubleshooting/keymaps/unhealthyEDIT.png -------------------------------------------------------------------------------- /docs/docs/assets/usb-logging/com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/usb-logging/com.jpg -------------------------------------------------------------------------------- /docs/docs/assets/usb-logging/putty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/usb-logging/putty.jpg -------------------------------------------------------------------------------- /docs/docs/assets/user-setup/firmware-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/user-setup/firmware-archive.png -------------------------------------------------------------------------------- /docs/docs/assets/user-setup/github-actions-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/assets/user-setup/github-actions-link.png -------------------------------------------------------------------------------- /docs/docs/behaviors/bluetooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/bluetooth.md -------------------------------------------------------------------------------- /docs/docs/behaviors/hold-tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/hold-tap.md -------------------------------------------------------------------------------- /docs/docs/behaviors/key-press.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/key-press.md -------------------------------------------------------------------------------- /docs/docs/behaviors/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/layers.md -------------------------------------------------------------------------------- /docs/docs/behaviors/lighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/lighting.md -------------------------------------------------------------------------------- /docs/docs/behaviors/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/misc.md -------------------------------------------------------------------------------- /docs/docs/behaviors/mod-tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/mod-tap.md -------------------------------------------------------------------------------- /docs/docs/behaviors/outputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/outputs.md -------------------------------------------------------------------------------- /docs/docs/behaviors/power.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/power.md -------------------------------------------------------------------------------- /docs/docs/behaviors/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/behaviors/reset.md -------------------------------------------------------------------------------- /docs/docs/codes/_applications.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_applications.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_editing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_editing.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_footnotes/example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_footnotes/example.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_input-assist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_input-assist.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_keyboard-keypad.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_keyboard-keypad.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_media.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_media.mdx -------------------------------------------------------------------------------- /docs/docs/codes/_power.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/_power.mdx -------------------------------------------------------------------------------- /docs/docs/codes/applications.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/applications.mdx -------------------------------------------------------------------------------- /docs/docs/codes/editing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/editing.mdx -------------------------------------------------------------------------------- /docs/docs/codes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/index.mdx -------------------------------------------------------------------------------- /docs/docs/codes/input-assist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/input-assist.mdx -------------------------------------------------------------------------------- /docs/docs/codes/keyboard-keypad.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/keyboard-keypad.mdx -------------------------------------------------------------------------------- /docs/docs/codes/media.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/media.mdx -------------------------------------------------------------------------------- /docs/docs/codes/modifiers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/modifiers.mdx -------------------------------------------------------------------------------- /docs/docs/codes/power.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/codes/power.mdx -------------------------------------------------------------------------------- /docs/docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/customization.md -------------------------------------------------------------------------------- /docs/docs/development/boards-shields-keymaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/boards-shields-keymaps.md -------------------------------------------------------------------------------- /docs/docs/development/build-flash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/build-flash.md -------------------------------------------------------------------------------- /docs/docs/development/clean-room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/clean-room.md -------------------------------------------------------------------------------- /docs/docs/development/new-shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/new-shield.md -------------------------------------------------------------------------------- /docs/docs/development/posix-board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/posix-board.md -------------------------------------------------------------------------------- /docs/docs/development/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/setup.md -------------------------------------------------------------------------------- /docs/docs/development/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/tests.md -------------------------------------------------------------------------------- /docs/docs/development/usb-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/development/usb-logging.md -------------------------------------------------------------------------------- /docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/faq.md -------------------------------------------------------------------------------- /docs/docs/features/displays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/features/displays.md -------------------------------------------------------------------------------- /docs/docs/features/encoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/features/encoders.md -------------------------------------------------------------------------------- /docs/docs/features/keymaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/features/keymaps.md -------------------------------------------------------------------------------- /docs/docs/features/underglow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/features/underglow.md -------------------------------------------------------------------------------- /docs/docs/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/hardware.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/keymap-example-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/keymap-example-file.md -------------------------------------------------------------------------------- /docs/docs/keymap-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/keymap-example.md -------------------------------------------------------------------------------- /docs/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/user-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docs/user-setup.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/codes/Context.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Context.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/Description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Description.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/Footnote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Footnote.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/FootnoteRef.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/FootnoteRef.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/FootnoteRefs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/FootnoteRefs.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/Footnotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Footnotes.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/LinkIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/LinkIcon.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/Name.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Name.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/OsLegend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/OsLegend.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/OsSupport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/OsSupport.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/OsSupportIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/OsSupportIcon.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/Table.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/TableRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/TableRow.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/ToastyContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/ToastyContainer.jsx -------------------------------------------------------------------------------- /docs/src/components/codes/ToastyCopyToClipboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/components/codes/ToastyCopyToClipboard.jsx -------------------------------------------------------------------------------- /docs/src/css/codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/css/codes.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/data/footnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/footnotes.js -------------------------------------------------------------------------------- /docs/src/data/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/groups.js -------------------------------------------------------------------------------- /docs/src/data/hid-applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/hid-applications.js -------------------------------------------------------------------------------- /docs/src/data/hid-usage-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/hid-usage-pages.js -------------------------------------------------------------------------------- /docs/src/data/hid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/hid.js -------------------------------------------------------------------------------- /docs/src/data/operating-systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/data/operating-systems.js -------------------------------------------------------------------------------- /docs/src/footnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/footnotes.js -------------------------------------------------------------------------------- /docs/src/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/groups.js -------------------------------------------------------------------------------- /docs/src/hid-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/hid-usage.js -------------------------------------------------------------------------------- /docs/src/hid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/hid.js -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/src/pages/styles.module.css -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/undraw_open_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/img/undraw_open_source.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_wireless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/img/undraw_wireless.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_zephyr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/img/undraw_zephyr.svg -------------------------------------------------------------------------------- /docs/static/img/zmk_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/img/zmk_logo.svg -------------------------------------------------------------------------------- /docs/static/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/setup.ps1 -------------------------------------------------------------------------------- /docs/static/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crides/zmk/HEAD/docs/static/setup.sh --------------------------------------------------------------------------------