firware updated + readme updated
This commit is contained in:
parent
5167d96a0c
commit
9780f60810
37 changed files with 42 additions and 22 deletions
|
|
@ -8,6 +8,7 @@ https://github.com/mctechnology17/zmk-config/blob/main/CHANGELOG.txt
|
||||||
- [x] dongle_display as modul support
|
- [x] dongle_display as modul support
|
||||||
- [x] oled display changed 128x32 to 128x64 for xiao
|
- [x] oled display changed 128x32 to 128x64 for xiao
|
||||||
- [x] readme updated
|
- [x] readme updated
|
||||||
|
- [x] firmware updated
|
||||||
|
|
||||||
# FEATURES 0.0.1-beta1 (Aug 22, 2024)
|
# FEATURES 0.0.1-beta1 (Aug 22, 2024)
|
||||||
=======================================
|
=======================================
|
||||||
|
|
|
||||||
63
README.md
63
README.md
|
|
@ -23,6 +23,7 @@
|
||||||
- [DONGLE DESIGNS](#DONGLE-DESIGNS)
|
- [DONGLE DESIGNS](#DONGLE-DESIGNS)
|
||||||
- [ZMK STUDIO](#ZMK-STUDIO)
|
- [ZMK STUDIO](#ZMK-STUDIO)
|
||||||
- [MODULE INTEGRATION](#MODULE-INTEGRATION)
|
- [MODULE INTEGRATION](#MODULE-INTEGRATION)
|
||||||
|
- [THIS REPOSITORY AS A MODULE](#THIS-REPOSITORY-AS-A-MODULE)
|
||||||
- [INSPIRATIONS](#INSPIRATIONS)
|
- [INSPIRATIONS](#INSPIRATIONS)
|
||||||
- [MY OTHER PROJECTS](#MY-OTHER-PROJECTS)
|
- [MY OTHER PROJECTS](#MY-OTHER-PROJECTS)
|
||||||
|
|
||||||
|
|
@ -34,28 +35,7 @@ a modification to your keymap, you can do it with the online [ZMK-STUDIO](https:
|
||||||
- If you already have your corne configured with this repository and want to make
|
- If you already have your corne configured with this repository and want to make
|
||||||
a modification to your keymap, you can do it with the online [keymap-editor](https://nickcoutsos.github.io/keymap-editor/).
|
a modification to your keymap, you can do it with the online [keymap-editor](https://nickcoutsos.github.io/keymap-editor/).
|
||||||
|
|
||||||
- If you already have a repository and you want only the dongle option of this repository with support for `zmk-studio`, just add this repository as a module to your configuration, here is a basic example (just copy and paste into your file `west.yml`):
|
- If you already have a repository and you want only the dongle option of this repository with support for `zmk-studio`, just add this repository as a module to your configuration, look the section [THIS REPOSITORY AS A MODULE](#THIS-REPOSITORY-AS-A-MODULE).
|
||||||
|
|
||||||
```yaml
|
|
||||||
manifest:
|
|
||||||
remotes:
|
|
||||||
- name: zmkfirmware
|
|
||||||
url-base: https://github.com/zmkfirmware
|
|
||||||
# include corne with dongle pro_micro and xiao compatible
|
|
||||||
- name: mctechnology17
|
|
||||||
url-base: https://github.com/mctechnology17
|
|
||||||
projects:
|
|
||||||
- name: zmk
|
|
||||||
remote: zmkfirmware
|
|
||||||
revision: main
|
|
||||||
import: app/west.yml
|
|
||||||
# include corne with dongle pro_micro and xiao compatible
|
|
||||||
- name: zmk-config
|
|
||||||
remote: mctechnology17
|
|
||||||
revision: main
|
|
||||||
self:
|
|
||||||
path: config
|
|
||||||
```
|
|
||||||
|
|
||||||
# INTRO
|
# INTRO
|
||||||
|
|
||||||
|
|
@ -489,6 +469,45 @@ See module details here for more information and more configurations:
|
||||||
- [nice_oled](https://github.com/mctechnology17/zmk-nice-oled)
|
- [nice_oled](https://github.com/mctechnology17/zmk-nice-oled)
|
||||||
- [dongle_display](https://github.com/englmaxi/zmk-dongle-display)
|
- [dongle_display](https://github.com/englmaxi/zmk-dongle-display)
|
||||||
|
|
||||||
|
# THIS REPOSITORY AS A MODULE
|
||||||
|
1. In the `config/west.yml` file, add a new remote and its related project.
|
||||||
|
```yaml
|
||||||
|
manifest:
|
||||||
|
remotes:
|
||||||
|
- name: zmkfirmware
|
||||||
|
url-base: https://github.com/zmkfirmware
|
||||||
|
# include corne with dongle pro_micro and xiao compatible
|
||||||
|
- name: mctechnology17
|
||||||
|
url-base: https://github.com/mctechnology17
|
||||||
|
projects:
|
||||||
|
- name: zmk
|
||||||
|
remote: zmkfirmware
|
||||||
|
revision: main
|
||||||
|
import: app/west.yml
|
||||||
|
# include corne with dongle pro_micro and xiao compatible
|
||||||
|
- name: zmk-config
|
||||||
|
remote: mctechnology17
|
||||||
|
revision: main
|
||||||
|
self:
|
||||||
|
path: config
|
||||||
|
```
|
||||||
|
|
||||||
|
2. In the `build.yaml` file, add the `corne_dongle_pro_micro` or the `corne_dongle_xiao` shield.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
include:
|
||||||
|
# example with xiao dongle without display
|
||||||
|
- board: seeeduino_xiao_ble
|
||||||
|
shield: corne_dongle_xiao
|
||||||
|
cmake-args: -DCONFIG_ZMK_KEYBOARD_NAME=\"Xiao_Dongle\" -DCONFIG_ZMK_STUDIO=y
|
||||||
|
artifact-name: xiao_corne_dongle_xiao
|
||||||
|
snippet: studio-rpc-usb-uart
|
||||||
|
# ... the rest of the shields
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Build the firmware, flash it to your keyboard, and enjoy!
|
||||||
|
|
||||||
# INSPIRATIONS
|
# INSPIRATIONS
|
||||||
|
|
||||||
- [englmaxi/zmk-config](https://github.com/englmaxi/zmk-config)
|
- [englmaxi/zmk-config](https://github.com/englmaxi/zmk-config)
|
||||||
|
|
|
||||||
BIN
firmware/nice_corne_dongle_oled.uf2
Normal file
BIN
firmware/nice_corne_dongle_oled.uf2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
firmware/nice_corne_left_oled.uf2
Normal file
BIN
firmware/nice_corne_left_oled.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/nice_corne_left_peripheral_oled.uf2
Normal file
BIN
firmware/nice_corne_left_peripheral_oled.uf2
Normal file
Binary file not shown.
BIN
firmware/nice_corne_left_peripheral_view.uf2
Normal file
BIN
firmware/nice_corne_left_peripheral_view.uf2
Normal file
Binary file not shown.
BIN
firmware/nice_corne_left_view.uf2
Normal file
BIN
firmware/nice_corne_left_view.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/nice_corne_right_oled.uf2
Normal file
BIN
firmware/nice_corne_right_oled.uf2
Normal file
Binary file not shown.
BIN
firmware/nice_corne_right_view.uf2
Normal file
BIN
firmware/nice_corne_right_view.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/nice_settings_reset.uf2
Normal file
BIN
firmware/nice_settings_reset.uf2
Normal file
Binary file not shown.
BIN
firmware/puchi_corne_dongle.uf2
Normal file
BIN
firmware/puchi_corne_dongle.uf2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
firmware/puchi_corne_dongle_view.uf2
Normal file
BIN
firmware/puchi_corne_dongle_view.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/puchi_corne_left_oled.uf2
Normal file
BIN
firmware/puchi_corne_left_oled.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/puchi_corne_left_peripheral_oled.uf2
Normal file
BIN
firmware/puchi_corne_left_peripheral_oled.uf2
Normal file
Binary file not shown.
BIN
firmware/puchi_corne_left_peripheral_view.uf2
Normal file
BIN
firmware/puchi_corne_left_peripheral_view.uf2
Normal file
Binary file not shown.
BIN
firmware/puchi_corne_left_view.uf2
Normal file
BIN
firmware/puchi_corne_left_view.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/puchi_corne_right_oled.uf2
Normal file
BIN
firmware/puchi_corne_right_oled.uf2
Normal file
Binary file not shown.
BIN
firmware/puchi_corne_right_view.uf2
Normal file
BIN
firmware/puchi_corne_right_view.uf2
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/puchi_settings_reset.uf2
Normal file
BIN
firmware/puchi_settings_reset.uf2
Normal file
Binary file not shown.
BIN
firmware/xiao_corne_dongle.uf2
Normal file
BIN
firmware/xiao_corne_dongle.uf2
Normal file
Binary file not shown.
BIN
firmware/xiao_corne_dongle_oled.uf2
Normal file
BIN
firmware/xiao_corne_dongle_oled.uf2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
firmware/xiao_settings_reset.uf2
Normal file
BIN
firmware/xiao_settings_reset.uf2
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue