aboutsummaryrefslogtreecommitdiff
path: root/keyboards/emajesty
diff options
context:
space:
mode:
authorEMajesty <37113810+EMajesty@users.noreply.github.com>2020-10-08 03:04:49 +0300
committerGitHub <noreply@github.com>2020-10-07 17:04:49 -0700
commitfe5bcae8b31af85135592b780c8d799a8ef4bd24 (patch)
treeb0da780e83e949b948389019ca81243ca53109f8 /keyboards/emajesty
parentcba4c1deb5e0eb6ecfdecde4fe66a8a3d293c008 (diff)
downloadqmk_firmware-fe5bcae8b31af85135592b780c8d799a8ef4bd24.tar.gz
qmk_firmware-fe5bcae8b31af85135592b780c8d799a8ef4bd24.zip
[Keyboard] New keyboard - eiri (#10529)
* eiri default keymap compiles * pic, info.json * Added picture for default layout, changed PRODUCT_ID * Changes to default keymap * Cleaned unused template remnants from files * Update keyboards/emajesty/eiri/readme.md Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: EMajesty <deceit66@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/emajesty')
-rw-r--r--keyboards/emajesty/eiri/config.h96
-rw-r--r--keyboards/emajesty/eiri/eiri.c17
-rw-r--r--keyboards/emajesty/eiri/eiri.h40
-rw-r--r--keyboards/emajesty/eiri/info.json12
-rw-r--r--keyboards/emajesty/eiri/keymaps/default/keymap.c34
-rw-r--r--keyboards/emajesty/eiri/keymaps/default/readme.md3
-rw-r--r--keyboards/emajesty/eiri/readme.md19
-rw-r--r--keyboards/emajesty/eiri/rules.mk22
8 files changed, 243 insertions, 0 deletions
diff --git a/keyboards/emajesty/eiri/config.h b/keyboards/emajesty/eiri/config.h
new file mode 100644
index 000000000..ea7afa482
--- /dev/null
+++ b/keyboards/emajesty/eiri/config.h
@@ -0,0 +1,96 @@
1/*
2Copyright 2020 EMajesty
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x9372
25#define DEVICE_VER 0x0001
26#define MANUFACTURER EMajesty
27#define PRODUCT eiri
28
29/* key matrix size */
30#define MATRIX_ROWS 4
31#define MATRIX_COLS 12
32
33/*
34 * Keyboard Matrix Assignments
35 *
36 * Change this to how you wired your keyboard
37 * COLS: AVR pins used for columns, left to right
38 * ROWS: AVR pins used for rows, top to bottom
39 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
40 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
41 *
42 */
43#define MATRIX_ROW_PINS { B4, B5, B2, B6 }
44#define MATRIX_COL_PINS { D1, D0, D4, C6, D7, E6, B3, B1, F7, F6, F5, F4 }
45#define UNUSED_PINS
46
47/* COL2ROW, ROW2COL */
48#define DIODE_DIRECTION COL2ROW
49
50/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
51#define DEBOUNCE 5
52
53/*
54 * Force NKRO
55 *
56 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
57 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
58 * makefile for this to work.)
59 *
60 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
61 * until the next keyboard reset.
62 *
63 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
64 * fully operational during normal computer usage.
65 *
66 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
67 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
68 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
69 * power-up.
70 *
71 */
72//#define FORCE_NKRO
73
74/*
75 * Feature disable options
76 * These options are also useful to firmware size reduction.
77 */
78
79/* disable debug print */
80//#define NO_DEBUG
81
82/* disable print */
83//#define NO_PRINT
84
85/* disable action features */
86//#define NO_ACTION_LAYER
87//#define NO_ACTION_TAPPING
88//#define NO_ACTION_ONESHOT
89
90/* disable these deprecated features by default */
91#define NO_ACTION_MACRO
92#define NO_ACTION_FUNCTION
93
94/* Bootmagic Lite key configuration */
95//#define BOOTMAGIC_LITE_ROW 0
96//#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/emajesty/eiri/eiri.c b/keyboards/emajesty/eiri/eiri.c
new file mode 100644
index 000000000..161fc9a96
--- /dev/null
+++ b/keyboards/emajesty/eiri/eiri.c
@@ -0,0 +1,17 @@
1/* Copyright 2020 EMajesty
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 "eiri.h"
diff --git a/keyboards/emajesty/eiri/eiri.h b/keyboards/emajesty/eiri/eiri.h
new file mode 100644
index 000000000..da06287cf
--- /dev/null
+++ b/keyboards/emajesty/eiri/eiri.h
@@ -0,0 +1,40 @@
1/* Copyright 2020 EMajesty
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#pragma once
18
19#include "quantum.h"
20
21/* This is a shortcut to help you visually see your layout.
22 *
23 * The first section contains all of the arguments representing the physical
24 * layout of the board and position of the keys.
25 *
26 * The second converts the arguments into a two-dimensional array which
27 * represents the switch matrix.
28 */
29#define LAYOUT( \
30 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, \
31 K12, K13, K14, K15, K16, K17, K18, K19, K20, K21, K22, K23, \
32 K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35, \
33 K36, K37, K38, K39, K40, K41, K42, K43, K44, K45 \
34) { \
35 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11 }, \
36 { K12, K13, K14, K15, K16, K17, K18, K19, K20, K21, K22, K23 }, \
37 { K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35 }, \
38 { KC_NO, K36, K37, K38, K39, K40, K41, K42, K43, K44, K45, KC_NO } \
39}
40
diff --git a/keyboards/emajesty/eiri/info.json b/keyboards/emajesty/eiri/info.json
new file mode 100644
index 000000000..7b8ae5927
--- /dev/null
+++ b/keyboards/emajesty/eiri/info.json
@@ -0,0 +1,12 @@
1{
2 "keyboard_name": "eiri",
3 "url": "https://github.com/EMajesty/eiri",
4 "maintainer": "EMajesty",
5 "width": 15,
6 "height": 4.5,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [{"x":3, "y":0}, {"x":11, "y":0}, {"x":2, "y":0.25}, {"x":4, "y":0.25}, {"x":10, "y":0.25}, {"x":12, "y":0.25}, {"x":1, "y":0.5}, {"x":5, "y":0.5}, {"x":9, "y":0.5}, {"x":13, "y":0.5}, {"x":0, "y":0.75}, {"x":14, "y":0.75}, {"x":3, "y":1}, {"x":11, "y":1}, {"x":2, "y":1.25}, {"x":4, "y":1.25}, {"x":10, "y":1.25}, {"x":12, "y":1.25}, {"x":1, "y":1.5}, {"x":5, "y":1.5}, {"x":9, "y":1.5}, {"x":13, "y":1.5}, {"x":0, "y":1.75}, {"x":14, "y":1.75}, {"x":3, "y":2}, {"x":11, "y":2}, {"x":2, "y":2.25}, {"x":4, "y":2.25}, {"x":10, "y":2.25}, {"x":12, "y":2.25}, {"x":1, "y":2.5}, {"x":5, "y":2.5}, {"x":9, "y":2.5}, {"x":13, "y":2.5}, {"x":0, "y":2.75}, {"x":14, "y":2.75}, {"x":3, "y":3}, {"x":11, "y":3}, {"x":2, "y":3.25}, {"x":4, "y":3.25}, {"x":10, "y":3.25}, {"x":12, "y":3.25}, {"x":5, "y":3.5}, {"x":6, "y":3.5}, {"x":8, "y":3.5}, {"x":9, "y":3.5}]
10 }
11 }
12}
diff --git a/keyboards/emajesty/eiri/keymaps/default/keymap.c b/keyboards/emajesty/eiri/keymaps/default/keymap.c
new file mode 100644
index 000000000..e52a83c81
--- /dev/null
+++ b/keyboards/emajesty/eiri/keymaps/default/keymap.c
@@ -0,0 +1,34 @@
1/* Copyright 2020 EMajesty
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#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 [0] = LAYOUT(
20 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
21 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
22 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
23 KC_LGUI, KC_LALT, KC_SPC, KC_DEL, MO(1), MO(2), KC_ENT, KC_BSPC, KC_RALT, KC_RGUI),
24 [1] = LAYOUT(
25 KC_ESC, _______, KC_UP, _______, KC_HOME, KC_PGUP, _______, _______, _______, KC_LPRN, KC_RPRN, KC_GRV,
26 _______, KC_LEFT, KC_DOWN, KC_RGHT, KC_END, KC_PGDN, _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, _______,
27 _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, _______, _______, KC_LCBR, KC_RCBR, _______,
28 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______),
29 [2] = LAYOUT(
30 RESET, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
31 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
32 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______)
34};
diff --git a/keyboards/emajesty/eiri/keymaps/default/readme.md b/keyboards/emajesty/eiri/keymaps/default/readme.md
new file mode 100644
index 000000000..f4b3c66d0
--- /dev/null
+++ b/keyboards/emajesty/eiri/keymaps/default/readme.md
@@ -0,0 +1,3 @@
1![default keymap](https://imgur.com/F3L3z8w.png)
2
3# The default keymap for eiri
diff --git a/keyboards/emajesty/eiri/readme.md b/keyboards/emajesty/eiri/readme.md
new file mode 100644
index 000000000..725eb3109
--- /dev/null
+++ b/keyboards/emajesty/eiri/readme.md
@@ -0,0 +1,19 @@
1# eiri
2
3![eiri](https://imgur.com/ZiLTj3Pl.png)
4
5An Atreus-inspired 40% keyboard with 6 columns
6
7* Keyboard Maintainer: [EMajesty](https://github.com/EMajesty)
8* Hardware Supported: eiri pcb
9* Hardware Availability: [Project is open source](https://github.com/EMajesty/eiri)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make emajesty/eiri:default
14
15Flashing example for this keyboard:
16
17 make emajesty/eiri:default:flash
18
19See 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).
diff --git a/keyboards/emajesty/eiri/rules.mk b/keyboards/emajesty/eiri/rules.mk
new file mode 100644
index 000000000..fd76a5247
--- /dev/null
+++ b/keyboards/emajesty/eiri/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = caterina
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output