Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new keyboard "miniDivide" #19870

Merged
merged 37 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2846cc3
Merge remote-tracking branch 'qmk/master'
takashicompany Sep 27, 2022
998aee1
Merge branch 'master' of github.com:qmk/qmk_firmware
takashicompany Oct 20, 2022
377db38
Merge branch 'master' of github.com:qmk/qmk_firmware
takashicompany Oct 28, 2022
cafe9a8
Merge branch 'master' of github.com:qmk/qmk_firmware
takashicompany Oct 31, 2022
fd27aa5
start miniDivide
takashicompany Feb 11, 2023
8e65adc
via
takashicompany Feb 17, 2023
68ee353
fix keymap
takashicompany Feb 17, 2023
e059fc8
readme
takashicompany Feb 17, 2023
382cd00
info.json
takashicompany Feb 17, 2023
38d98bc
add license
takashicompany Feb 17, 2023
19fe7d0
Update keyboards/takashicompany/minidivide/config.h
takashicompany Feb 18, 2023
72131ed
Update keyboards/takashicompany/minidivide/info.json
takashicompany Feb 18, 2023
4fcdf23
Update keyboards/takashicompany/minidivide/info.json
takashicompany Feb 18, 2023
3cf290c
Update keyboards/takashicompany/minidivide/keymaps/default/keymap.c
takashicompany Feb 18, 2023
e142275
Update keyboards/takashicompany/minidivide/keymaps/via/keymap.c
takashicompany Feb 18, 2023
2eae4ba
Update keyboards/takashicompany/minidivide/rules.mk
waffle87 Feb 18, 2023
a964024
add oled
takashicompany Feb 26, 2023
a5bc846
Update keyboards/takashicompany/minidivide/config.h
takashicompany Apr 18, 2023
00570db
Update keyboards/takashicompany/minidivide/config.h
takashicompany Apr 18, 2023
9b3187c
fix json
takashicompany May 7, 2023
8c9fde6
remove LAYOUT define
takashicompany May 7, 2023
337013d
Update keyboards/takashicompany/minidivide/minidivide.c
takashicompany May 9, 2023
5985b1c
Delete minidivide.h
takashicompany May 9, 2023
d18fce1
format json
takashicompany May 10, 2023
d304a16
Update keyboards/takashicompany/minidivide/rules.mk
takashicompany May 11, 2023
d81f8fd
Update keyboards/takashicompany/minidivide/info.json
takashicompany May 11, 2023
5d34e9d
Update keyboards/takashicompany/minidivide/info.json
takashicompany May 11, 2023
a9a91e9
Update keyboards/takashicompany/minidivide/info.json
takashicompany May 11, 2023
6ef8644
fix led
takashicompany Jun 15, 2023
947a88a
Update keyboards/takashicompany/minidivide/config.h
takashicompany Jun 23, 2023
f477fe1
Update keyboards/takashicompany/minidivide/info.json
takashicompany Jun 23, 2023
2135919
Update keyboards/takashicompany/minidivide/minidivide.c
takashicompany Jun 23, 2023
9fe7598
Execute qmk info -f json -kb takashicompany/minidivide
takashicompany Jul 1, 2023
22960cb
Delete config.h
takashicompany Jul 1, 2023
8d45f16
Update keyboards/takashicompany/minidivide/info.json
takashicompany Jul 7, 2023
acd4c4b
Update keyboards/takashicompany/minidivide/info.json
takashicompany Jul 7, 2023
e4623b7
Update keyboards/takashicompany/minidivide/info.json
waffle87 Jul 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions keyboards/takashicompany/minidivide/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Copyright 2023 takashicompany (@takashicompany)
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define MATRIX_ROWS 8
#define MATRIX_COLS 5

#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
#define MATRIX_COL_PINS { D4, C6, D7, E6, B4 }
#define MATRIX_ROW_PINS_RIGHT { F4, F5, F6, F7 }
#define MATRIX_COL_PINS_RIGHT { B4, E6, D7, C6, D4 }
takashicompany marked this conversation as resolved.
Show resolved Hide resolved

/* COL2ROW, ROW2COL */
#define DIODE_DIRECTION COL2ROW

#define SOFT_SERIAL_PIN D2

takashicompany marked this conversation as resolved.
Show resolved Hide resolved
#define RGB_DI_PIN D3
#ifdef RGB_DI_PIN
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
# define RGBLED_NUM 10
# define RGBLED_SPLIT { 5, 5 }
# define RGBLIGHT_HUE_STEP 8
# define RGBLIGHT_SAT_STEP 8
# define RGBLIGHT_VAL_STEP 8
# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_SNAKE
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_CHRISTMAS
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_ALTERNATING
#define RGBLIGHT_EFFECT_TWINKLE
#endif
takashicompany marked this conversation as resolved.
Show resolved Hide resolved


/*
* Feature disable options
* These options are also useful to firmware size reduction.
*/

/* disable debug print */
//#define NO_DEBUG

/* disable print */
//#define NO_PRINT

/* disable action features */
//#define NO_ACTION_LAYER
//#define NO_ACTION_TAPPING
//#define NO_ACTION_ONESHOT
294 changes: 294 additions & 0 deletions keyboards/takashicompany/minidivide/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,294 @@
{
waffle87 marked this conversation as resolved.
Show resolved Hide resolved
"manufacturer": "takashicompany",
"keyboard_name": "miniDivide",
"maintainer": "takashicompany",
"bootloader": "caterina",
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
},
"processor": "atmega32u4",
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
"url": "",
"usb": {
"vid": "0x7463",
"pid": "0x0037",
"device_version": "0.0.1"
},
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
takashicompany marked this conversation as resolved.
Show resolved Hide resolved
"layouts": {
"LAYOUT": {
"layout": [
{
"label": "0,2",
"x": 1.68,
"y": 0,
"w": 0.84,
"h": 0.84
},
{
"label": "4,2",
"x": 7.98,
"y": 0,
"w": 0.84,
"h": 0.84
},
{
"label": "0,1",
"x": 0.84,
"y": 0.21,
"w": 0.84,
"h": 0.84
},
{
"label": "0,3",
"x": 2.52,
"y": 0.21,
"w": 0.84,
"h": 0.84
},
{
"label": "4,1",
"x": 7.14,
"y": 0.21,
"w": 0.84,
"h": 0.84
},
{
"label": "4,3",
"x": 8.82,
"y": 0.21,
"w": 0.84,
"h": 0.84
},
{
"label": "0,0",
"x": 0,
"y": 0.42,
"w": 0.84,
"h": 0.84
},
{
"label": "0,4",
"x": 3.36,
"y": 0.42,
"w": 0.84,
"h": 0.84
},
{
"label": "4,0",
"x": 6.3,
"y": 0.42,
"w": 0.84,
"h": 0.84
},
{
"label": "4,4",
"x": 9.66,
"y": 0.42,
"w": 0.84,
"h": 0.84
},
{
"label": "1,2",
"x": 1.68,
"y": 0.84,
"w": 0.84,
"h": 0.84
},
{
"label": "5,2",
"x": 7.98,
"y": 0.84,
"w": 0.84,
"h": 0.84
},
{
"label": "1,1",
"x": 0.84,
"y": 1.05,
"w": 0.84,
"h": 0.84
},
{
"label": "1,3",
"x": 2.52,
"y": 1.05,
"w": 0.84,
"h": 0.84
},
{
"label": "5,1",
"x": 7.14,
"y": 1.05,
"w": 0.84,
"h": 0.84
},
{
"label": "5,3",
"x": 8.82,
"y": 1.05,
"w": 0.84,
"h": 0.84
},
{
"label": "1,0",
"x": 0,
"y": 1.26,
"w": 0.84,
"h": 0.84
},
{
"label": "1,4",
"x": 3.36,
"y": 1.26,
"w": 0.84,
"h": 0.84
},
{
"label": "5,0",
"x": 6.3,
"y": 1.26,
"w": 0.84,
"h": 0.84
},
{
"label": "5,4",
"x": 9.66,
"y": 1.26,
"w": 0.84,
"h": 0.84
},
{
"label": "2,2",
"x": 1.68,
"y": 1.68,
"w": 0.84,
"h": 0.84
},
{
"label": "6,2",
"x": 7.98,
"y": 1.68,
"w": 0.84,
"h": 0.84
},
{
"label": "2,1",
"x": 0.84,
"y": 1.89,
"w": 0.84,
"h": 0.84
},
{
"label": "2,3",
"x": 2.52,
"y": 1.89,
"w": 0.84,
"h": 0.84
},
{
"label": "6,1",
"x": 7.14,
"y": 1.89,
"w": 0.84,
"h": 0.84
},
{
"label": "6,3",
"x": 8.82,
"y": 1.89,
"w": 0.84,
"h": 0.84
},
{
"label": "2,0",
"x": 0,
"y": 2.1,
"w": 0.84,
"h": 0.84
},
{
"label": "2,4",
"x": 3.36,
"y": 2.1,
"w": 0.84,
"h": 0.84
},
{
"label": "6,0",
"x": 6.3,
"y": 2.1,
"w": 0.84,
"h": 0.84
},
{
"label": "6,4",
"x": 9.66,
"y": 2.1,
"w": 0.84,
"h": 0.84
},
{
"label": "3,2",
"x": 2.52,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "3,3",
"x": 3.36,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "3,4",
"x": 4.2,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "7,1",
"x": 6.3,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "7,2",
"x": 7.14,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "7,3",
"x": 7.98,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "3,1",
"x": 1.68,
"y": 3.15,
"w": 0.84,
"h": 0.84
},
{
"label": "7,0",
"x": 5.46,
"y": 3.15,
"w": 0.84,
"h": 0.84
}
]
}
}
}
Loading