-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Keyboard] Add Kimiko Rev2 and update Rev1 (#553)
* Initial Kimiko rev2 support Signed-off-by: Ex3c4Def <[email protected]> * Add Kimiko Rev2 and update Rev1 - move oled code and font to root, that way all Rev's and keymaps can access it - delete all user keymaps, because it can be changed in VIAL GUI - Rev1 migrate some features to info.json * Fix Rev2 layout * fix encoder orientation in vial gui * fix typo * remove readme from vial keymap folder * rm obsolet code from vial.json, mirror qmk code * fix firmware build for oriaj3 keymap * add rev1 default keymap to fix cli check --------- Signed-off-by: Ex3c4Def <[email protected]> Co-authored-by: Ex3c4Def <[email protected]> Co-authored-by: Ben Roe <[email protected]> Co-authored-by: Ben Roe <[email protected]>
- Loading branch information
1 parent
c950206
commit 024ff3a
Showing
30 changed files
with
1,871 additions
and
135 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
.../keycapsss/kimiko/keymaps/vial/glcdfont.c → keyboards/keycapsss/kimiko/glcdfont.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"features": { | ||
"mousekey": true, | ||
"extrakey": true | ||
}, | ||
"split": { | ||
"enabled": true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* Copyright 2019 MechMerlin | ||
* Copyright 2023 @Ex3c4Def | ||
* Copyright 2023 @BenRoe (keycapsss.com) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
// OLED definitions | ||
#ifndef OLED_FONT_H | ||
# define OLED_FONT_H "keyboards/keycapsss/kimiko/glcdfont.c" | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,59 @@ | ||
# Kimiko | ||
|
||
<img src="https://keycapsss.com/media/image/7f/88/2b/kimiko-split-keyboard-1.jpg" width="800" /> | ||
## Rev2 | ||
|
||
A split keyboard with 4x6 vertically staggered keys and a Kyria style thumb thumb cluster. | ||
|
||
![Kimiko Rev2](https://i.imgur.com/TBP8Bcrh.jpg) | ||
|
||
- Keyboard Maintainer: [BenRoe](https://github.com/BenRoe/) [@keycapsss](https://twitter.com/keycapsss) | ||
- Hardware Supported: Pro Micro 5V/16Mhz and compatible | ||
- Hardware Availability: [Keycapsss.com](https://keycapsss.com) | ||
|
||
### Features (Rev2) | ||
|
||
- 62 Per key RGB led's (SK6812 Mini-E) | ||
- RGB Matrix is enabled as default in rules.mk | ||
- The effects can be configured in config.h | ||
- Support for 1 rotary encoder per side (two possible positions) | ||
- Support for 1 OLED display per side | ||
- 128x32 (SSD1306) or Nice!View are supported | ||
- With 1 OLED on each side, they have to be the same | ||
- Default configuration for 128x32 OLED | ||
|
||
|
||
Make firmware .hex for this keyboard (after setting up your build environment): | ||
|
||
```bash | ||
qmk compile -kb keycapsss/kimiko/rev2 -km rev2 | ||
``` | ||
|
||
Use [QMK Toolbox](https://github.com/qmk/qmk_toolbox) to flash the firmware hex file to the keyboard controller. | ||
|
||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
|
||
## Rev1 | ||
|
||
A split keyboard with 4x6 vertically staggered keys and thumb keys. | ||
|
||
![Kimiko Rev1](https://i.imgur.com/md6V6Eoh.jpg) | ||
|
||
- Keyboard Maintainer: [BenRoe](https://github.com/BenRoe/) [@keycapsss](https://twitter.com/keycapsss) | ||
- Hardware Supported: Pro Micro 5V/16Mhz and compatible | ||
- Hardware Availability: [Keycapsss.com](https://keycapsss.com) | ||
|
||
### Features (Rev1) | ||
|
||
- Per key RGB led's (SK6812 Mini-E) | ||
- 6 underglow RGB led's per side (SK6812 Mini) | ||
- Support for 1 rotary encoder per side (two possible positions) | ||
|
||
* Keyboard Maintainer: [BenRoe](https://github.com/BenRoe/) [@keycapsss](https://twitter.com/keycapsss) | ||
* Hardware Supported: Pro Micro 5V/16Mhz and compatible | ||
* Hardware Availability: [keycapsss.com](https://keycapsss.com) | ||
|
||
Make firmware .hex for this keyboard (after setting up your build environment): | ||
|
||
make keycapsss/kimiko:default | ||
|
||
Example of flashing this keyboard (or use [QMK Toolbox](https://github.com/qmk/qmk_toolbox)): | ||
```bash | ||
qmk compile -kb keycapsss/kimiko/rev1 -km default | ||
``` | ||
|
||
make keycapsss/kimiko:default:flash | ||
Use [QMK Toolbox](https://github.com/qmk/qmk_toolbox) to flash the firmware hex file to the keyboard controller. | ||
|
||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). |
Oops, something went wrong.