aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dozen0
diff options
context:
space:
mode:
authoryynmt <45400583+yynmt@users.noreply.github.com>2021-02-21 04:11:36 +0900
committerGitHub <noreply@github.com>2021-02-20 14:11:36 -0500
commit07100d5d4d5843434efd16fc2c827af584fd0478 (patch)
tree334e49dc119d4ecf8c4dd664a89beb2a2cce1f95 /keyboards/dozen0
parentc588cb42991bb1e8b511b7ff2f91aa0b5c677e05 (diff)
downloadqmk_firmware-07100d5d4d5843434efd16fc2c827af584fd0478.tar.gz
qmk_firmware-07100d5d4d5843434efd16fc2c827af584fd0478.zip
Add via support to Dozen0 (#11932)
* Change VID and PID * Add via kyemap * Update keymap.c * Update keymap.c Co-authored-by: yynmt <yynmt@yynmt.com>
Diffstat (limited to 'keyboards/dozen0')
-rw-r--r--keyboards/dozen0/config.h4
-rw-r--r--keyboards/dozen0/keymaps/via/keymap.c48
-rw-r--r--keyboards/dozen0/keymaps/via/rules.mk1
3 files changed, 51 insertions, 2 deletions
diff --git a/keyboards/dozen0/config.h b/keyboards/dozen0/config.h
index 6d88014af..11a8e1966 100644
--- a/keyboards/dozen0/config.h
+++ b/keyboards/dozen0/config.h
@@ -20,8 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20#include "config_common.h" 20#include "config_common.h"
21 21
22/* USB Device descriptor parameter */ 22/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED 23#define VENDOR_ID 0x04D8
24#define PRODUCT_ID 0x0000 24#define PRODUCT_ID 0xEA4F
25#define DEVICE_VER 0x0001 25#define DEVICE_VER 0x0001
26#define MANUFACTURER yynmt 26#define MANUFACTURER yynmt
27#define PRODUCT Dozen0 27#define PRODUCT Dozen0
diff --git a/keyboards/dozen0/keymaps/via/keymap.c b/keyboards/dozen0/keymaps/via/keymap.c
new file mode 100644
index 000000000..91f15469f
--- /dev/null
+++ b/keyboards/dozen0/keymaps/via/keymap.c
@@ -0,0 +1,48 @@
1/* Copyright 2021 yynmt
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 QMK_KEYBOARD_H
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 /* Base
21 * ,-----------------------------------------.
22 * | Cut | Copy |Paste | Up |Delete| Bksp |
23 * | | | | | |Raise |
24 * |------+------+------+------+------+------|
25 * | Ctrl |Shift | Left | Down |Right |Enter |
26 * | | | | | |Lower |
27 * `-----------------------------------------'
28 */
29 [0] = LAYOUT(
30 LCTL(KC_X), LCTL(KC_C), LCTL(KC_V), KC_UP, KC_DEL, LT(2,KC_BSPC),
31 KC_LCTL, KC_LSFT, KC_LEFT, KC_DOWN, KC_RGHT, LT(1,KC_ENT)
32 ),
33 /* Lower */
34 [1] = LAYOUT(
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
37 ),
38 /* Raise */
39 [2] = LAYOUT(
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
42 ),
43 /* Adjust */
44 [3] = LAYOUT(
45 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
46 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
47 ),
48};
diff --git a/keyboards/dozen0/keymaps/via/rules.mk b/keyboards/dozen0/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/dozen0/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes