diff options
| author | Freather <72902384+CMMS-Freather@users.noreply.github.com> | 2023-12-14 15:41:13 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-14 00:41:13 -0700 |
| commit | 4cdb19291fa2f509a842189cfbd350f0a8eb7afe (patch) | |
| tree | 59a7a76e22c58e63e63cb2c5d75cd8bed4d750e2 | |
| parent | c44a232c5763d77c2d6d11e88df8812e279efe01 (diff) | |
[Keyboard] Add fuji75 (#22158)
* adding fuji75 pcb support
adding fuji75 pcb support
includes
solder
hotswap
* Update keymap.c
* Update keymap.c
* Update keyboards/sakura_workshop/fuji75/fuji75.c
Co-authored-by: Joel Challis <git@zvecr.com>
* Update keyboards/sakura_workshop/fuji75/solder/readme.md
Co-authored-by: Joel Challis <git@zvecr.com>
* Update keyboards/sakura_workshop/fuji75/hotswap/readme.md
Co-authored-by: Joel Challis <git@zvecr.com>
* Update keyboards/sakura_workshop/fuji75/solder/readme.md
Co-authored-by: Joel Challis <git@zvecr.com>
* Update keyboards/sakura_workshop/fuji75/info.json
Co-authored-by: Joel Challis <git@zvecr.com>
* Update keyboards/sakura_workshop/fuji75/hotswap/readme.md
Co-authored-by: Joel Challis <git@zvecr.com>
* Delete keyboards/sakura_workshop/fuji75/config.h
* Update keyboards/sakura_workshop/fuji75/solder/readme.md
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/sakura_workshop/fuji75/hotswap/readme.md
Co-authored-by: Drashna Jaelre <drashna@live.com>
* update info.json
update info.json per requested by @fauxpark
reran qmk format-json
---------
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/fuji75.c | 46 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/hotswap/info.json | 102 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/hotswap/readme.md | 24 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/hotswap/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/info.json | 34 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/keymaps/default/keymap.c | 15 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/keymaps/via/keymap.c | 15 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/solder/info.json | 102 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/solder/readme.md | 24 | ||||
| -rw-r--r-- | keyboards/sakura_workshop/fuji75/solder/rules.mk | 1 |
11 files changed, 365 insertions, 0 deletions
diff --git a/keyboards/sakura_workshop/fuji75/fuji75.c b/keyboards/sakura_workshop/fuji75/fuji75.c new file mode 100644 index 0000000000..7103e70300 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/fuji75.c | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | /* Copyright 2023 CMM.S Freather | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "quantum.h" | ||
| 18 | |||
| 19 | const rgblight_segment_t PROGMEM my_capslock_layer[] = RGBLIGHT_LAYER_SEGMENTS ( | ||
| 20 | {0,1,HSV_WHITE} | ||
| 21 | ); | ||
| 22 | |||
| 23 | const rgblight_segment_t PROGMEM my_capsoff_layer[] = RGBLIGHT_LAYER_SEGMENTS ( | ||
| 24 | {0,1,HSV_BLACK} | ||
| 25 | ); | ||
| 26 | |||
| 27 | |||
| 28 | const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST( | ||
| 29 | my_capslock_layer, | ||
| 30 | my_capsoff_layer | ||
| 31 | ); | ||
| 32 | |||
| 33 | void keyboard_post_init_kb(void) { | ||
| 34 | rgblight_layers = my_rgb_layers; | ||
| 35 | |||
| 36 | keyboard_post_init_user(); | ||
| 37 | } | ||
| 38 | |||
| 39 | bool led_update_kb(led_t led_state) { | ||
| 40 | bool res = led_update_user(led_state); | ||
| 41 | if(res) { | ||
| 42 | rgblight_set_layer_state(0, led_state.caps_lock); | ||
| 43 | rgblight_set_layer_state(1, !led_state.caps_lock); | ||
| 44 | } | ||
| 45 | return res; | ||
| 46 | } | ||
diff --git a/keyboards/sakura_workshop/fuji75/hotswap/info.json b/keyboards/sakura_workshop/fuji75/hotswap/info.json new file mode 100644 index 0000000000..a19c88a010 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/hotswap/info.json | |||
| @@ -0,0 +1,102 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Fuji75_hotswap", | ||
| 3 | "matrix_pins": { | ||
| 4 | "cols": ["B3", "C7", "C6", "B6", "B5", "B4", "D7", "D6", "F0", "F1", "F4", "F5", "F6", "F7", "D5"], | ||
| 5 | "rows": ["D4", "B0", "B2", "D1", "D2", "D3"] | ||
| 6 | }, | ||
| 7 | "usb": { | ||
| 8 | "device_version": "1.0.0", | ||
| 9 | "pid": "0x4638", | ||
| 10 | "vid": "0x5357" | ||
| 11 | }, | ||
| 12 | "ws2812": { | ||
| 13 | "pin": "B1" | ||
| 14 | }, | ||
| 15 | "layouts": { | ||
| 16 | "LAYOUT": { | ||
| 17 | "layout": [ | ||
| 18 | {"label": "Esc", "matrix": [0, 0], "x": 0, "y": 0}, | ||
| 19 | {"label": "F1", "matrix": [0, 1], "x": 1.25, "y": 0}, | ||
| 20 | {"label": "F2", "matrix": [0, 2], "x": 2.25, "y": 0}, | ||
| 21 | {"label": "F3", "matrix": [0, 3], "x": 3.25, "y": 0}, | ||
| 22 | {"label": "F4", "matrix": [0, 4], "x": 4.25, "y": 0}, | ||
| 23 | {"label": "F5", "matrix": [0, 5], "x": 5.5, "y": 0}, | ||
| 24 | {"label": "F6", "matrix": [0, 6], "x": 6.5, "y": 0}, | ||
| 25 | {"label": "F7", "matrix": [0, 7], "x": 7.5, "y": 0}, | ||
| 26 | {"label": "F8", "matrix": [0, 8], "x": 8.5, "y": 0}, | ||
| 27 | {"label": "F9", "matrix": [0, 9], "x": 9.5, "y": 0}, | ||
| 28 | {"label": "F10", "matrix": [0, 10], "x": 10.75, "y": 0}, | ||
| 29 | {"label": "F11", "matrix": [0, 11], "x": 11.75, "y": 0}, | ||
| 30 | {"label": "F12", "matrix": [0, 12], "x": 12.75, "y": 0}, | ||
| 31 | {"label": "F13", "matrix": [0, 13], "x": 13.75, "y": 0}, | ||
| 32 | {"label": "\uff5e", "matrix": [1, 0], "x": 0, "y": 1.25}, | ||
| 33 | {"label": "1", "matrix": [1, 1], "x": 1, "y": 1.25}, | ||
| 34 | {"label": "2", "matrix": [1, 2], "x": 2, "y": 1.25}, | ||
| 35 | {"label": "3", "matrix": [1, 3], "x": 3, "y": 1.25}, | ||
| 36 | {"label": "4", "matrix": [1, 4], "x": 4, "y": 1.25}, | ||
| 37 | {"label": "5", "matrix": [1, 5], "x": 5, "y": 1.25}, | ||
| 38 | {"label": "6", "matrix": [1, 6], "x": 6, "y": 1.25}, | ||
| 39 | {"label": "7", "matrix": [1, 7], "x": 7, "y": 1.25}, | ||
| 40 | {"label": "8", "matrix": [1, 8], "x": 8, "y": 1.25}, | ||
| 41 | {"label": "9", "matrix": [1, 9], "x": 9, "y": 1.25}, | ||
| 42 | {"label": "0", "matrix": [1, 10], "x": 10, "y": 1.25}, | ||
| 43 | {"label": "-", "matrix": [1, 11], "x": 11, "y": 1.25}, | ||
| 44 | {"label": "=", "matrix": [1, 12], "x": 12, "y": 1.25}, | ||
| 45 | {"label": "backspace", "matrix": [1, 13], "x": 13, "y": 1.25, "w": 2}, | ||
| 46 | {"label": "home", "matrix": [1, 14], "x": 15, "y": 1.25}, | ||
| 47 | {"label": "tab", "matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5}, | ||
| 48 | {"label": "q", "matrix": [2, 1], "x": 1.5, "y": 2.25}, | ||
| 49 | {"label": "w", "matrix": [2, 2], "x": 2.5, "y": 2.25}, | ||
| 50 | {"label": "e", "matrix": [2, 3], "x": 3.5, "y": 2.25}, | ||
| 51 | {"label": "r", "matrix": [2, 4], "x": 4.5, "y": 2.25}, | ||
| 52 | {"label": "t", "matrix": [2, 5], "x": 5.5, "y": 2.25}, | ||
| 53 | {"label": "y", "matrix": [2, 6], "x": 6.5, "y": 2.25}, | ||
| 54 | {"label": "u", "matrix": [2, 7], "x": 7.5, "y": 2.25}, | ||
| 55 | {"label": "i", "matrix": [2, 8], "x": 8.5, "y": 2.25}, | ||
| 56 | {"label": "o", "matrix": [2, 9], "x": 9.5, "y": 2.25}, | ||
| 57 | {"label": "p", "matrix": [2, 10], "x": 10.5, "y": 2.25}, | ||
| 58 | {"label": "{", "matrix": [2, 11], "x": 11.5, "y": 2.25}, | ||
| 59 | {"label": "}", "matrix": [2, 12], "x": 12.5, "y": 2.25}, | ||
| 60 | {"label": "|", "matrix": [3, 13], "x": 13.5, "y": 2.25, "w": 1.5}, | ||
| 61 | {"label": "end", "matrix": [2, 14], "x": 15, "y": 2.25}, | ||
| 62 | {"label": "capslock", "matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.75}, | ||
| 63 | {"label": "a", "matrix": [3, 1], "x": 1.75, "y": 3.25}, | ||
| 64 | {"label": "s", "matrix": [3, 2], "x": 2.75, "y": 3.25}, | ||
| 65 | {"label": "d", "matrix": [3, 3], "x": 3.75, "y": 3.25}, | ||
| 66 | {"label": "f", "matrix": [3, 4], "x": 4.75, "y": 3.25}, | ||
| 67 | {"label": "g", "matrix": [3, 5], "x": 5.75, "y": 3.25}, | ||
| 68 | {"label": "h", "matrix": [3, 6], "x": 6.75, "y": 3.25}, | ||
| 69 | {"label": "j", "matrix": [3, 7], "x": 7.75, "y": 3.25}, | ||
| 70 | {"label": "k", "matrix": [3, 8], "x": 8.75, "y": 3.25}, | ||
| 71 | {"label": "l", "matrix": [3, 9], "x": 9.75, "y": 3.25}, | ||
| 72 | {"label": ";", "matrix": [3, 10], "x": 10.75, "y": 3.25}, | ||
| 73 | {"label": "'", "matrix": [3, 11], "x": 11.75, "y": 3.25}, | ||
| 74 | {"label": "enter", "matrix": [3, 12], "x": 12.75, "y": 3.25, "w": 2.25}, | ||
| 75 | {"label": "insert", "matrix": [3, 14], "x": 15, "y": 3.25}, | ||
| 76 | {"label": "leftshift", "matrix": [4, 1], "x": 0, "y": 4.25, "w": 2.25}, | ||
| 77 | {"label": "z", "matrix": [4, 2], "x": 2.25, "y": 4.25}, | ||
| 78 | {"label": "x", "matrix": [4, 3], "x": 3.25, "y": 4.25}, | ||
| 79 | {"label": "c", "matrix": [4, 4], "x": 4.25, "y": 4.25}, | ||
| 80 | {"label": "v", "matrix": [4, 5], "x": 5.25, "y": 4.25}, | ||
| 81 | {"label": "b", "matrix": [4, 6], "x": 6.25, "y": 4.25}, | ||
| 82 | {"label": "n", "matrix": [4, 7], "x": 7.25, "y": 4.25}, | ||
| 83 | {"label": "m", "matrix": [4, 8], "x": 8.25, "y": 4.25}, | ||
| 84 | {"label": ",", "matrix": [4, 9], "x": 9.25, "y": 4.25}, | ||
| 85 | {"label": ".", "matrix": [4, 10], "x": 10.25, "y": 4.25}, | ||
| 86 | {"label": "/", "matrix": [4, 11], "x": 11.25, "y": 4.25}, | ||
| 87 | {"label": "rightshift", "matrix": [4, 12], "x": 12.25, "y": 4.25, "w": 1.75}, | ||
| 88 | {"label": "up", "matrix": [4, 13], "x": 14, "y": 4.25}, | ||
| 89 | {"label": "delete", "matrix": [4, 14], "x": 15, "y": 4.25}, | ||
| 90 | {"label": "lctrl", "matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25}, | ||
| 91 | {"label": "lwin", "matrix": [5, 1], "x": 1.25, "y": 5.25, "w": 1.25}, | ||
| 92 | {"label": "lalt", "matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25}, | ||
| 93 | {"label": "space", "matrix": [5, 6], "x": 3.75, "y": 5.25, "w": 6.25}, | ||
| 94 | {"label": "ralt", "matrix": [5, 10], "x": 10, "y": 5.25, "w": 1.5}, | ||
| 95 | {"label": "rctrl", "matrix": [5, 11], "x": 11.5, "y": 5.25, "w": 1.5}, | ||
| 96 | {"label": "left", "matrix": [5, 12], "x": 13, "y": 5.25, "w": 1.5}, | ||
| 97 | {"label": "down", "matrix": [5, 13], "x": 14, "y": 5.25}, | ||
| 98 | {"label": "right", "matrix": [5, 14], "x": 15, "y": 5.25} | ||
| 99 | ] | ||
| 100 | } | ||
| 101 | } | ||
| 102 | } | ||
diff --git a/keyboards/sakura_workshop/fuji75/hotswap/readme.md b/keyboards/sakura_workshop/fuji75/hotswap/readme.md new file mode 100644 index 0000000000..8f5576ef04 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/hotswap/readme.md | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # Fuji75 Hotswap | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | * Keyboard Maintainer: [Freather](https://github.com/CMMS-Freather) | ||
| 6 | * Hardware Supported: PCB, Atmega32u4 | ||
| 7 | |||
| 8 | Make example for this keyboard (after setting up your build environment): | ||
| 9 | |||
| 10 | make sakura_workshop/fuji75/hotswap:default | ||
| 11 | |||
| 12 | Flashing example for this keyboard: | ||
| 13 | |||
| 14 | make sakura_workshop/fuji75/hotswap:default:flash | ||
| 15 | |||
| 16 | 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). | ||
| 17 | |||
| 18 | ## Bootloader | ||
| 19 | |||
| 20 | Enter the bootloader in 3 ways: | ||
| 21 | |||
| 22 | * **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard | ||
| 23 | * **Physical reset button**: Briefly press the button on the back of the PCB | ||
| 24 | * **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available | ||
diff --git a/keyboards/sakura_workshop/fuji75/hotswap/rules.mk b/keyboards/sakura_workshop/fuji75/hotswap/rules.mk new file mode 100644 index 0000000000..6e7633bfe0 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/hotswap/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| # This file intentionally left blank | |||
diff --git a/keyboards/sakura_workshop/fuji75/info.json b/keyboards/sakura_workshop/fuji75/info.json new file mode 100644 index 0000000000..7b56fd4d72 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/info.json | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | { | ||
| 2 | "manufacturer": "SakuraWorkshop", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Freather", | ||
| 5 | "processor": "atmega32u4", | ||
| 6 | "bootloader": "atmel-dfu", | ||
| 7 | "diode_direction": "COL2ROW", | ||
| 8 | "features": { | ||
| 9 | "bootmagic": true, | ||
| 10 | "mousekey": true, | ||
| 11 | "extrakey": true, | ||
| 12 | "nkro": true, | ||
| 13 | "rgblight": true | ||
| 14 | }, | ||
| 15 | "rgblight": { | ||
| 16 | "led_count": 1, | ||
| 17 | "layers": { | ||
| 18 | "enabled": true | ||
| 19 | }, | ||
| 20 | "sleep": true, | ||
| 21 | "animations": { | ||
| 22 | "alternating": true, | ||
| 23 | "breathing": true, | ||
| 24 | "christmas": true, | ||
| 25 | "knight": true, | ||
| 26 | "rainbow_mood": true, | ||
| 27 | "rainbow_swirl": true, | ||
| 28 | "rgb_test": true, | ||
| 29 | "snake": true, | ||
| 30 | "static_gradient": true, | ||
| 31 | "twinkle": true | ||
| 32 | } | ||
| 33 | } | ||
| 34 | } | ||
diff --git a/keyboards/sakura_workshop/fuji75/keymaps/default/keymap.c b/keyboards/sakura_workshop/fuji75/keymaps/default/keymap.c new file mode 100644 index 0000000000..5d7a381d6a --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/keymaps/default/keymap.c | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | // Copyright 2023 CMM.S Freather | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #include QMK_KEYBOARD_H | ||
| 5 | |||
| 6 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 7 | [0] = LAYOUT( | ||
| 8 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, | ||
| 9 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_HOME, | ||
| 10 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_END, | ||
| 11 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_INS, | ||
| 12 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_DEL, | ||
| 13 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 14 | ) | ||
| 15 | }; | ||
diff --git a/keyboards/sakura_workshop/fuji75/keymaps/via/keymap.c b/keyboards/sakura_workshop/fuji75/keymaps/via/keymap.c new file mode 100644 index 0000000000..5d7a381d6a --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/keymaps/via/keymap.c | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | // Copyright 2023 CMM.S Freather | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #include QMK_KEYBOARD_H | ||
| 5 | |||
| 6 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 7 | [0] = LAYOUT( | ||
| 8 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, | ||
| 9 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_HOME, | ||
| 10 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_END, | ||
| 11 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_INS, | ||
| 12 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_DEL, | ||
| 13 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 14 | ) | ||
| 15 | }; | ||
diff --git a/keyboards/sakura_workshop/fuji75/keymaps/via/rules.mk b/keyboards/sakura_workshop/fuji75/keymaps/via/rules.mk new file mode 100644 index 0000000000..1e5b99807c --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/sakura_workshop/fuji75/solder/info.json b/keyboards/sakura_workshop/fuji75/solder/info.json new file mode 100644 index 0000000000..68bb75e4f4 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/solder/info.json | |||
| @@ -0,0 +1,102 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Fuji75_solder", | ||
| 3 | "matrix_pins": { | ||
| 4 | "cols": ["D4", "B6", "B5", "B4", "D7", "D6", "F0", "F1", "F4", "F5", "F6", "F7", "B2", "B1", "D5"], | ||
| 5 | "rows": ["C6", "B0", "B3", "D1", "D3", "D2"] | ||
| 6 | }, | ||
| 7 | "usb": { | ||
| 8 | "device_version": "1.0.0", | ||
| 9 | "pid": "0x4637", | ||
| 10 | "vid": "0x5357" | ||
| 11 | }, | ||
| 12 | "ws2812": { | ||
| 13 | "pin": "E6" | ||
| 14 | }, | ||
| 15 | "layouts": { | ||
| 16 | "LAYOUT": { | ||
| 17 | "layout": [ | ||
| 18 | {"label": "Esc", "matrix": [0, 0], "x": 0, "y": 0}, | ||
| 19 | {"label": "F1", "matrix": [0, 1], "x": 1.25, "y": 0}, | ||
| 20 | {"label": "F2", "matrix": [0, 2], "x": 2.25, "y": 0}, | ||
| 21 | {"label": "F3", "matrix": [0, 3], "x": 3.25, "y": 0}, | ||
| 22 | {"label": "F4", "matrix": [0, 4], "x": 4.25, "y": 0}, | ||
| 23 | {"label": "F5", "matrix": [0, 5], "x": 5.5, "y": 0}, | ||
| 24 | {"label": "F6", "matrix": [0, 6], "x": 6.5, "y": 0}, | ||
| 25 | {"label": "F7", "matrix": [0, 7], "x": 7.5, "y": 0}, | ||
| 26 | {"label": "F8", "matrix": [0, 8], "x": 8.5, "y": 0}, | ||
| 27 | {"label": "F9", "matrix": [0, 9], "x": 9.5, "y": 0}, | ||
| 28 | {"label": "F10", "matrix": [0, 10], "x": 10.75, "y": 0}, | ||
| 29 | {"label": "F11", "matrix": [0, 11], "x": 11.75, "y": 0}, | ||
| 30 | {"label": "F12", "matrix": [0, 12], "x": 12.75, "y": 0}, | ||
| 31 | {"label": "F13", "matrix": [0, 13], "x": 13.75, "y": 0}, | ||
| 32 | {"label": "\uff5e", "matrix": [1, 0], "x": 0, "y": 1.25}, | ||
| 33 | {"label": "1", "matrix": [1, 1], "x": 1, "y": 1.25}, | ||
| 34 | {"label": "2", "matrix": [1, 2], "x": 2, "y": 1.25}, | ||
| 35 | {"label": "3", "matrix": [1, 3], "x": 3, "y": 1.25}, | ||
| 36 | {"label": "4", "matrix": [1, 4], "x": 4, "y": 1.25}, | ||
| 37 | {"label": "5", "matrix": [1, 5], "x": 5, "y": 1.25}, | ||
| 38 | {"label": "6", "matrix": [1, 6], "x": 6, "y": 1.25}, | ||
| 39 | {"label": "7", "matrix": [1, 7], "x": 7, "y": 1.25}, | ||
| 40 | {"label": "8", "matrix": [1, 8], "x": 8, "y": 1.25}, | ||
| 41 | {"label": "9", "matrix": [1, 9], "x": 9, "y": 1.25}, | ||
| 42 | {"label": "0", "matrix": [1, 10], "x": 10, "y": 1.25}, | ||
| 43 | {"label": "-", "matrix": [1, 11], "x": 11, "y": 1.25}, | ||
| 44 | {"label": "=", "matrix": [1, 12], "x": 12, "y": 1.25}, | ||
| 45 | {"label": "backspace", "matrix": [1, 13], "x": 13, "y": 1.25, "w": 2}, | ||
| 46 | {"label": "home", "matrix": [1, 14], "x": 15, "y": 1.25}, | ||
| 47 | {"label": "tab", "matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5}, | ||
| 48 | {"label": "q", "matrix": [2, 1], "x": 1.5, "y": 2.25}, | ||
| 49 | {"label": "w", "matrix": [2, 2], "x": 2.5, "y": 2.25}, | ||
| 50 | {"label": "e", "matrix": [2, 3], "x": 3.5, "y": 2.25}, | ||
| 51 | {"label": "r", "matrix": [2, 4], "x": 4.5, "y": 2.25}, | ||
| 52 | {"label": "t", "matrix": [2, 5], "x": 5.5, "y": 2.25}, | ||
| 53 | {"label": "y", "matrix": [2, 6], "x": 6.5, "y": 2.25}, | ||
| 54 | {"label": "u", "matrix": [2, 7], "x": 7.5, "y": 2.25}, | ||
| 55 | {"label": "i", "matrix": [2, 8], "x": 8.5, "y": 2.25}, | ||
| 56 | {"label": "o", "matrix": [2, 9], "x": 9.5, "y": 2.25}, | ||
| 57 | {"label": "p", "matrix": [2, 10], "x": 10.5, "y": 2.25}, | ||
| 58 | {"label": "{", "matrix": [2, 11], "x": 11.5, "y": 2.25}, | ||
| 59 | {"label": "}", "matrix": [2, 12], "x": 12.5, "y": 2.25}, | ||
| 60 | {"label": "|", "matrix": [3, 13], "x": 13.5, "y": 2.25, "w": 1.5}, | ||
| 61 | {"label": "end", "matrix": [2, 14], "x": 15, "y": 2.25}, | ||
| 62 | {"label": "capslock", "matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.75}, | ||
| 63 | {"label": "a", "matrix": [3, 1], "x": 1.75, "y": 3.25}, | ||
| 64 | {"label": "s", "matrix": [3, 2], "x": 2.75, "y": 3.25}, | ||
| 65 | {"label": "d", "matrix": [3, 3], "x": 3.75, "y": 3.25}, | ||
| 66 | {"label": "f", "matrix": [3, 4], "x": 4.75, "y": 3.25}, | ||
| 67 | {"label": "g", "matrix": [3, 5], "x": 5.75, "y": 3.25}, | ||
| 68 | {"label": "h", "matrix": [3, 6], "x": 6.75, "y": 3.25}, | ||
| 69 | {"label": "j", "matrix": [3, 7], "x": 7.75, "y": 3.25}, | ||
| 70 | {"label": "k", "matrix": [3, 8], "x": 8.75, "y": 3.25}, | ||
| 71 | {"label": "l", "matrix": [3, 9], "x": 9.75, "y": 3.25}, | ||
| 72 | {"label": ";", "matrix": [3, 10], "x": 10.75, "y": 3.25}, | ||
| 73 | {"label": "'", "matrix": [3, 11], "x": 11.75, "y": 3.25}, | ||
| 74 | {"label": "enter", "matrix": [3, 12], "x": 12.75, "y": 3.25, "w": 2.25}, | ||
| 75 | {"label": "insert", "matrix": [3, 14], "x": 15, "y": 3.25}, | ||
| 76 | {"label": "leftshift", "matrix": [4, 1], "x": 0, "y": 4.25, "w": 2.25}, | ||
| 77 | {"label": "z", "matrix": [4, 2], "x": 2.25, "y": 4.25}, | ||
| 78 | {"label": "x", "matrix": [4, 3], "x": 3.25, "y": 4.25}, | ||
| 79 | {"label": "c", "matrix": [4, 4], "x": 4.25, "y": 4.25}, | ||
| 80 | {"label": "v", "matrix": [4, 5], "x": 5.25, "y": 4.25}, | ||
| 81 | {"label": "b", "matrix": [4, 6], "x": 6.25, "y": 4.25}, | ||
| 82 | {"label": "n", "matrix": [4, 7], "x": 7.25, "y": 4.25}, | ||
| 83 | {"label": "m", "matrix": [4, 8], "x": 8.25, "y": 4.25}, | ||
| 84 | {"label": ",", "matrix": [4, 9], "x": 9.25, "y": 4.25}, | ||
| 85 | {"label": ".", "matrix": [4, 10], "x": 10.25, "y": 4.25}, | ||
| 86 | {"label": "/", "matrix": [4, 11], "x": 11.25, "y": 4.25}, | ||
| 87 | {"label": "rightshift", "matrix": [4, 12], "x": 12.25, "y": 4.25, "w": 1.75}, | ||
| 88 | {"label": "up", "matrix": [4, 13], "x": 14, "y": 4.25}, | ||
| 89 | {"label": "delete", "matrix": [4, 14], "x": 15, "y": 4.25}, | ||
| 90 | {"label": "lctrl", "matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25}, | ||
| 91 | {"label": "lwin", "matrix": [5, 1], "x": 1.25, "y": 5.25, "w": 1.25}, | ||
| 92 | {"label": "lalt", "matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25}, | ||
| 93 | {"label": "space", "matrix": [5, 6], "x": 3.75, "y": 5.25, "w": 6.25}, | ||
| 94 | {"label": "ralt", "matrix": [5, 10], "x": 10, "y": 5.25, "w": 1.5}, | ||
| 95 | {"label": "rctrl", "matrix": [5, 11], "x": 11.5, "y": 5.25, "w": 1.5}, | ||
| 96 | {"label": "left", "matrix": [5, 12], "x": 13, "y": 5.25, "w": 1.5}, | ||
| 97 | {"label": "down", "matrix": [5, 13], "x": 14, "y": 5.25}, | ||
| 98 | {"label": "right", "matrix": [5, 14], "x": 15, "y": 5.25} | ||
| 99 | ] | ||
| 100 | } | ||
| 101 | } | ||
| 102 | } | ||
diff --git a/keyboards/sakura_workshop/fuji75/solder/readme.md b/keyboards/sakura_workshop/fuji75/solder/readme.md new file mode 100644 index 0000000000..b0d6f30b35 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/solder/readme.md | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # Fuji75 Solder | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | * Keyboard Maintainer: [Freather](https://github.com/CMMS-Freather) | ||
| 6 | * Hardware Supported: PCB, Atmega32u4 | ||
| 7 | |||
| 8 | Make example for this keyboard (after setting up your build environment): | ||
| 9 | |||
| 10 | make sakura_workshop/fuji75/solder:default | ||
| 11 | |||
| 12 | Flashing example for this keyboard: | ||
| 13 | |||
| 14 | make sakura_workshop/fuji75/solder:default:flash | ||
| 15 | |||
| 16 | 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). | ||
| 17 | |||
| 18 | ## Bootloader | ||
| 19 | |||
| 20 | Enter the bootloader in 3 ways: | ||
| 21 | |||
| 22 | * **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard | ||
| 23 | * **Physical reset button**: Briefly press the button on the back of the PCB | ||
| 24 | * **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available | ||
diff --git a/keyboards/sakura_workshop/fuji75/solder/rules.mk b/keyboards/sakura_workshop/fuji75/solder/rules.mk new file mode 100644 index 0000000000..6e7633bfe0 --- /dev/null +++ b/keyboards/sakura_workshop/fuji75/solder/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| # This file intentionally left blank | |||
