├── .github └── workflows │ └── build.yml ├── boards └── shields │ ├── .gitkeep │ └── mikefive │ ├── Kconfig.defconfig │ ├── Kconfig.shield │ ├── boards │ └── nice_nano_v2.overlay │ ├── mikefive-layouts.dtsi │ ├── mikefive.conf │ ├── mikefive.overlay │ └── mikefive.zmk.yml ├── config ├── mikefive.json ├── mikefive.keymap └── west.yml ├── files ├── custom-keycaps │ ├── images │ │ ├── keywellcaps.jpg │ │ ├── keywellrender.jpg │ │ ├── mikeholscher_PG1316S_keycap_convexfoammod.jpg │ │ ├── normalcaps.jpg │ │ ├── printingtips.jpg │ │ └── resinprinted.jpg │ ├── mikeholscher_PG1316S_keycap_convexfoammod.step │ ├── mikeholscher_PG1316S_keycap_keywellangled.step │ ├── mikeholscher_PG1316S_keycap_keywellcenter.step │ ├── mikeholscher_PG1316S_keycap_normal.step │ ├── mikeholscher_PG1316S_keycap_normalthumb.step │ └── readme.md ├── footprint-and-cad │ ├── CPG1316S01D02_castelated_mikecinq.kicad_mod │ ├── CPG1316S01D02_kailhspecsheet_mikefive.kicad_mod │ ├── CPG1316S01D02_reversible_mikefives.kicad_mod │ ├── PG1316M--装配体.STEP │ ├── PG1316S--装配体.STEP │ └── readme.md ├── mods │ ├── PG1316S_papermod1.jpg │ ├── PG1316S_papermod2.dxf │ ├── PG1316S_papermod2.mp4 │ ├── PG1316S_papermods_cutting_template.pdf │ ├── PG1316S_papermods_cutting_template.svg │ └── readme.md └── specsheets │ ├── CPG1316C01D02.pdf │ ├── CPG1316M01D02.pdf │ ├── CPG1316S01D02.pdf │ ├── PG1316_0.7U_keycap.pdf │ ├── PG1316_1.25U_keycap.pdf │ ├── PG1316_1.5U_keycap.pdf │ ├── PG1316_1U_keycap.pdf │ ├── PG1316_2U_keycap.pdf │ ├── PG1316_Blind_1U_keycap.pdf │ ├── PG1316_F_keycap.pdf │ └── PG1316_space_key_keycap.pdf ├── images ├── PG1316S_footprint_mikeholscher.png ├── PG1316SnMwcap.png ├── kbdavatar.png ├── mikefive Rendering Front.jpg ├── mikefive done2.jpg └── mikefivekeycap flats.jpg ├── readme.md └── zephyr └── module.yml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /boards/shields/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boards/shields/mikefive/Kconfig.defconfig: -------------------------------------------------------------------------------- 1 | if SHIELD_MIKEFIVE 2 | 3 | config ZMK_KEYBOARD_NAME 4 | default "mikefive" 5 | 6 | endif -------------------------------------------------------------------------------- /boards/shields/mikefive/Kconfig.shield: -------------------------------------------------------------------------------- 1 | config SHIELD_MIKEFIVE 2 | def_bool $(shields_list_contains,mikefive) -------------------------------------------------------------------------------- /boards/shields/mikefive/boards/nice_nano_v2.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/boards/shields/mikefive/boards/nice_nano_v2.overlay -------------------------------------------------------------------------------- /boards/shields/mikefive/mikefive-layouts.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/boards/shields/mikefive/mikefive-layouts.dtsi -------------------------------------------------------------------------------- /boards/shields/mikefive/mikefive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/boards/shields/mikefive/mikefive.conf -------------------------------------------------------------------------------- /boards/shields/mikefive/mikefive.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/boards/shields/mikefive/mikefive.overlay -------------------------------------------------------------------------------- /boards/shields/mikefive/mikefive.zmk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/boards/shields/mikefive/mikefive.zmk.yml -------------------------------------------------------------------------------- /config/mikefive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/config/mikefive.json -------------------------------------------------------------------------------- /config/mikefive.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/config/mikefive.keymap -------------------------------------------------------------------------------- /config/west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/config/west.yml -------------------------------------------------------------------------------- /files/custom-keycaps/images/keywellcaps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/keywellcaps.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/images/keywellrender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/keywellrender.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/images/mikeholscher_PG1316S_keycap_convexfoammod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/mikeholscher_PG1316S_keycap_convexfoammod.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/images/normalcaps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/normalcaps.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/images/printingtips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/printingtips.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/images/resinprinted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/images/resinprinted.jpg -------------------------------------------------------------------------------- /files/custom-keycaps/mikeholscher_PG1316S_keycap_convexfoammod.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/mikeholscher_PG1316S_keycap_convexfoammod.step -------------------------------------------------------------------------------- /files/custom-keycaps/mikeholscher_PG1316S_keycap_keywellangled.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/mikeholscher_PG1316S_keycap_keywellangled.step -------------------------------------------------------------------------------- /files/custom-keycaps/mikeholscher_PG1316S_keycap_keywellcenter.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/mikeholscher_PG1316S_keycap_keywellcenter.step -------------------------------------------------------------------------------- /files/custom-keycaps/mikeholscher_PG1316S_keycap_normal.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/mikeholscher_PG1316S_keycap_normal.step -------------------------------------------------------------------------------- /files/custom-keycaps/mikeholscher_PG1316S_keycap_normalthumb.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/mikeholscher_PG1316S_keycap_normalthumb.step -------------------------------------------------------------------------------- /files/custom-keycaps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/custom-keycaps/readme.md -------------------------------------------------------------------------------- /files/footprint-and-cad/CPG1316S01D02_castelated_mikecinq.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/CPG1316S01D02_castelated_mikecinq.kicad_mod -------------------------------------------------------------------------------- /files/footprint-and-cad/CPG1316S01D02_kailhspecsheet_mikefive.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/CPG1316S01D02_kailhspecsheet_mikefive.kicad_mod -------------------------------------------------------------------------------- /files/footprint-and-cad/CPG1316S01D02_reversible_mikefives.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/CPG1316S01D02_reversible_mikefives.kicad_mod -------------------------------------------------------------------------------- /files/footprint-and-cad/PG1316M--装配体.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/PG1316M--装配体.STEP -------------------------------------------------------------------------------- /files/footprint-and-cad/PG1316S--装配体.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/PG1316S--装配体.STEP -------------------------------------------------------------------------------- /files/footprint-and-cad/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/footprint-and-cad/readme.md -------------------------------------------------------------------------------- /files/mods/PG1316S_papermod1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/PG1316S_papermod1.jpg -------------------------------------------------------------------------------- /files/mods/PG1316S_papermod2.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/PG1316S_papermod2.dxf -------------------------------------------------------------------------------- /files/mods/PG1316S_papermod2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/PG1316S_papermod2.mp4 -------------------------------------------------------------------------------- /files/mods/PG1316S_papermods_cutting_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/PG1316S_papermods_cutting_template.pdf -------------------------------------------------------------------------------- /files/mods/PG1316S_papermods_cutting_template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/PG1316S_papermods_cutting_template.svg -------------------------------------------------------------------------------- /files/mods/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/mods/readme.md -------------------------------------------------------------------------------- /files/specsheets/CPG1316C01D02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/CPG1316C01D02.pdf -------------------------------------------------------------------------------- /files/specsheets/CPG1316M01D02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/CPG1316M01D02.pdf -------------------------------------------------------------------------------- /files/specsheets/CPG1316S01D02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/CPG1316S01D02.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_0.7U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_0.7U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_1.25U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_1.25U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_1.5U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_1.5U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_1U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_1U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_2U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_2U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_Blind_1U_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_Blind_1U_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_F_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_F_keycap.pdf -------------------------------------------------------------------------------- /files/specsheets/PG1316_space_key_keycap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/files/specsheets/PG1316_space_key_keycap.pdf -------------------------------------------------------------------------------- /images/PG1316S_footprint_mikeholscher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/PG1316S_footprint_mikeholscher.png -------------------------------------------------------------------------------- /images/PG1316SnMwcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/PG1316SnMwcap.png -------------------------------------------------------------------------------- /images/kbdavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/kbdavatar.png -------------------------------------------------------------------------------- /images/mikefive Rendering Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/mikefive Rendering Front.jpg -------------------------------------------------------------------------------- /images/mikefive done2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/mikefive done2.jpg -------------------------------------------------------------------------------- /images/mikefivekeycap flats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/images/mikefivekeycap flats.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/readme.md -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeholscher/zmk-config-mikefive/HEAD/zephyr/module.yml --------------------------------------------------------------------------------