Corrected according to review

This commit is contained in:
t-ando 2024-07-04 08:53:43 +09:00
parent ee20c8b721
commit cd173c714e
4 changed files with 9 additions and 18 deletions

View File

@ -20,18 +20,12 @@
"sync": {
"matrix_state": true
}
},
"usb_detect": {
"enabled": true
}
},
"matrix_pins": {
"cols": ["GP1", "GP2", "GP3", "GP4", "GP5", "GP6", "GP7"],
"rows": ["GP29", "GP28", "GP27", "GP26"]
},
"mouse_key": {
"enabled": true
},
"processor": "RP2040",
"url": "",
"usb": {
@ -47,7 +41,12 @@
"led_count": 44,
"split": true,
"split_count": [22, 22],
"sleep": true
"sleep": true,
"default": {
"hue": 0,
"sat": 0,
"val": 50
}
},
"layouts": {
"LAYOUT_split_6x3_3_1": {

View File

@ -29,7 +29,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______
),
};
void keyboard_post_init_user(void) {
rgblight_sethsv(0, 0, 50);
}

View File

@ -29,7 +29,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______
),
};
void keyboard_post_init_user(void) {
rgblight_sethsv(0, 0, 100);
}

View File

@ -1,6 +1,6 @@
# yubino_hara
![yubino_hara](https://raw.githubusercontent.com/nagmeal/sep-sep-kbd/main/yubino-hara/yubinohara.jpg)
![yubino_hara](https://imgur.com/a/c91DXXL)
- Split
- Reverse tilt (tilted from front to back)
@ -16,11 +16,11 @@
Make example for this keyboard (after setting up your build environment):
qmk compile -kb sepsepkbd/yubino_hara -km default
make sepsepkbd/yubino_hara:default
Flashing example for this keyboard:
Connect to PC with USB cable and copy the generated fa2 file.
make sepsepkbd/yubino_hara:default:flash
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).