keyboard/keyboards/zmk-config/README.md

22 lines
897 B
Markdown
Raw Normal View History

2020-12-19 22:34:40 +00:00
# ZMK Notes
2020-12-04 22:43:05 +00:00
## Docker Volume
2020-12-05 23:27:34 +00:00
Need to have the `zmk-config` directory mounted at `/workspaces/zmk-config` in Docker container
2020-12-04 22:43:05 +00:00
## Building
``` sh
west build --board nice_nano -d build/tidbit -- -DSHIELD=tidbit -DZMK_CONFIG=/workspaces/zmk-config/keyboards/zmk-config/config
2020-12-04 22:43:05 +00:00
west build --board itsybitsy_nrf52840 -d build/azarashi64/left -- -DSHIELD=azarashi64_left -DZMK_CONFIG=/workspaces/zmk-config/keyboards/zmk-config/config
west build --board itsybitsy_nrf52840 -d build/azarashi64/right -- -DSHIELD=azarashi64_right -DZMK_CONFIG=/workspaces/zmk-config/keyboards/zmk-config/config
2020-12-19 22:34:40 +00:00
west build --board nice_nano -d build/lily58/left -- -DSHIELD=lily58_left -DZMK_CONFIG=/workspaces/zmk-config/keyboards/zmk-config/config
west build --board nice_nano -d build/lily58/right -- -DSHIELD=lily58_right -DZMK_CONFIG=/workspaces/zmk-config/keyboards/zmk-config/config
2020-12-04 22:43:05 +00:00
```