[Keyboard] Add Dango40 (#14437)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Swiftrax <swiftrax@gmail.com> Co-authored-by: Swiftrax <swiftrax@github.com>
This commit is contained in:
parent
c8a3353003
commit
9c564b6a5f
9 changed files with 502 additions and 0 deletions
50
keyboards/onekeyco/dango40/config.h
Normal file
50
keyboards/onekeyco/dango40/config.h
Normal file
|
@ -0,0 +1,50 @@
|
|||
/*
|
||||
Copyright 2021 Swiftrax <swiftrax@gmail.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
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0x04D8
|
||||
#define PRODUCT_ID 0xE9B9
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER One Key Company
|
||||
#define PRODUCT Dango40
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 4
|
||||
#define MATRIX_COLS 13
|
||||
|
||||
// ROWS: Top to bottom, COLS: Left to right
|
||||
|
||||
#define MATRIX_ROW_PINS { F4, F1, F0, C6 }
|
||||
#define MATRIX_COL_PINS { F7, F6, F5, D3, D5, D4, D6, D7, B4, B5, B6, C7, B0 }
|
||||
|
||||
#define ENCODERS_PAD_A { D2 }
|
||||
#define ENCODERS_PAD_B { D1 }
|
||||
|
||||
/* COL2ROW or ROW2COL */
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/* define if matrix has ghost */
|
||||
//#define MATRIX_HAS_GHOST
|
||||
|
||||
/* Set 0 if debouncing isn't needed */
|
||||
#define DEBOUNCE 5
|
||||
|
||||
/*EEPROM for via*/
|
||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 5
|
27
keyboards/onekeyco/dango40/dango40.c
Normal file
27
keyboards/onekeyco/dango40/dango40.c
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
Copyright 2021 Swiftrax <swiftrax@gmail.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/>.
|
||||
*/
|
||||
#include "dango40.h"
|
||||
|
||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
||||
if (!encoder_update_user(index, clockwise)) { return false; }
|
||||
if (clockwise) {
|
||||
tap_code_delay(KC_VOLU, 10);
|
||||
} else {
|
||||
tap_code_delay(KC_VOLD, 10);
|
||||
}
|
||||
return true;
|
||||
}
|
33
keyboards/onekeyco/dango40/dango40.h
Normal file
33
keyboards/onekeyco/dango40/dango40.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
Copyright 2021 Swiftrax <swiftrax@gmail.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
|
||||
|
||||
#define ___ KC_NO
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
#define LAYOUT_all( \
|
||||
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, \
|
||||
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, \
|
||||
K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \
|
||||
K30, K31, K32, K34, K36, K37, K39, K3A, K3B \
|
||||
) { \
|
||||
{ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, }, \
|
||||
{ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, }, \
|
||||
{ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, }, \
|
||||
{ K30, K31, K32, ___, K34, ___, K36, K37, ___, K39, K3A, K3B, ___, } \
|
||||
}
|
263
keyboards/onekeyco/dango40/info.json
Normal file
263
keyboards/onekeyco/dango40/info.json
Normal file
|
@ -0,0 +1,263 @@
|
|||
{
|
||||
"keyboard_name":"Dango40",
|
||||
"url":"https://github.com/swiftrax",
|
||||
"maintainer":"Swiftrax",
|
||||
"layouts":{
|
||||
"LAYOUT":{
|
||||
"layout_all":[
|
||||
{
|
||||
"label":"0,0",
|
||||
"x":0,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,1",
|
||||
"x":1,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,2",
|
||||
"x":2,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,3",
|
||||
"x":3,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,4",
|
||||
"x":4,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,5",
|
||||
"x":5,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,6",
|
||||
"x":6,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,7",
|
||||
"x":7,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,8",
|
||||
"x":8,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,9",
|
||||
"x":9,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,10",
|
||||
"x":10,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"0,11",
|
||||
"x":11,
|
||||
"y":0,
|
||||
"w":1.75
|
||||
},
|
||||
{
|
||||
"label":"0,12",
|
||||
"x":12.75,
|
||||
"y":0
|
||||
},
|
||||
{
|
||||
"label":"1,0",
|
||||
"x":0,
|
||||
"y":1,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"1,1",
|
||||
"x":1.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,2",
|
||||
"x":2.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,3",
|
||||
"x":3.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,4",
|
||||
"x":4.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,5",
|
||||
"x":5.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,6",
|
||||
"x":6.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,7",
|
||||
"x":7.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,8",
|
||||
"x":8.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,9",
|
||||
"x":9.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,10",
|
||||
"x":10.25,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"1,11",
|
||||
"x":11.25,
|
||||
"y":1,
|
||||
"w":1.5
|
||||
},
|
||||
{
|
||||
"label":"1,12",
|
||||
"x":12.75,
|
||||
"y":1
|
||||
},
|
||||
{
|
||||
"label":"2,0",
|
||||
"x":0,
|
||||
"y":2,
|
||||
"w":1.75
|
||||
},
|
||||
{
|
||||
"label":"2,1",
|
||||
"x":1.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,2",
|
||||
"x":2.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,3",
|
||||
"x":3.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,4",
|
||||
"x":4.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,5",
|
||||
"x":5.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,6",
|
||||
"x":6.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,7",
|
||||
"x":7.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,8",
|
||||
"x":8.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,9",
|
||||
"x":9.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,10",
|
||||
"x":10.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,11",
|
||||
"x":11.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"2,12",
|
||||
"x":12.75,
|
||||
"y":2
|
||||
},
|
||||
{
|
||||
"label":"3,0",
|
||||
"x":0,
|
||||
"y":3,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"3,1",
|
||||
"x":1.25,
|
||||
"y":3,
|
||||
"w":1.5
|
||||
},
|
||||
{
|
||||
"label":"3,2",
|
||||
"x":2.75,
|
||||
"y":3,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"3,4",
|
||||
"x":4,
|
||||
"y":3,
|
||||
"w":2.25
|
||||
},
|
||||
{
|
||||
"label":"3,6",
|
||||
"x":6.25,
|
||||
"y":3,
|
||||
"w":2.75
|
||||
},
|
||||
{
|
||||
"label":"3,7",
|
||||
"x":9,
|
||||
"y":3,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"3,9",
|
||||
"x":10.25,
|
||||
"y":3,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"3,10",
|
||||
"x":11.5,
|
||||
"y":3,
|
||||
"w":1.25
|
||||
},
|
||||
{
|
||||
"label":"3,11",
|
||||
"x":12.75,
|
||||
"y":3
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
38
keyboards/onekeyco/dango40/keymaps/default/keymap.c
Normal file
38
keyboards/onekeyco/dango40/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
Copyright 2021 Swiftrax <swiftrax@gmail.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/>.
|
||||
*/
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_all(
|
||||
KC_GESC, KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , KC_BSPC, KC_MUTE,
|
||||
KC_TAB , KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_SCLN, KC_ENT , KC_PGUP,
|
||||
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_PGDN,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC , KC_SPC , KC_RALT, KC_RCTL, MO(1) , KC_RGHT
|
||||
),
|
||||
[1] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[2] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
50
keyboards/onekeyco/dango40/keymaps/via/keymap.c
Normal file
50
keyboards/onekeyco/dango40/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,50 @@
|
|||
/*
|
||||
Copyright 2021 Swiftrax <swiftrax@gmail.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/>.
|
||||
*/
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_all(
|
||||
KC_GESC, KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , KC_BSPC, KC_MUTE,
|
||||
KC_TAB , KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_SCLN, KC_ENT , KC_PGUP,
|
||||
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_PGDN,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC , KC_SPC , KC_RALT, KC_RCTL, MO(1) , KC_RGHT
|
||||
),
|
||||
[1] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[2] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[3] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[4] = LAYOUT_all(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
1
keyboards/onekeyco/dango40/keymaps/via/rules.mk
Normal file
1
keyboards/onekeyco/dango40/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
18
keyboards/onekeyco/dango40/readme.md
Normal file
18
keyboards/onekeyco/dango40/readme.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Dango40
|
||||
|
||||
40% keyboard
|
||||
|
||||
* Keyboard Maintainer: Swiftrax
|
||||
* Hardware Supported: Dango40
|
||||
* Hardware Availability: Dango40 PCB
|
||||
|
||||
## Bootloader Enter the bootloader in 3 ways:
|
||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
|
||||
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
|
||||
|
||||
Make example for flashing this keyboard (after setting up your build environment):
|
||||
|
||||
make onekeyco/dango40: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).
|
22
keyboards/onekeyco/dango40/rules.mk
Normal file
22
keyboards/onekeyco/dango40/rules.mk
Normal file
|
@ -0,0 +1,22 @@
|
|||
# MCU name
|
||||
MCU = atmega32u4
|
||||
|
||||
# Bootloader selection
|
||||
BOOTLOADER = atmel-dfu
|
||||
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||
CONSOLE_ENABLE = no # Console for debug
|
||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
NKRO_ENABLE = no # USB Nkey Rollover
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||
AUDIO_ENABLE = no # Audio output
|
||||
ENCODER_ENABLE = yes # Enable encoder
|
Loading…
Reference in a new issue