aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/murcielago/info.json12
-rw-r--r--keyboards/murcielago/murcielago.c17
-rw-r--r--keyboards/murcielago/murcielago.h49
-rw-r--r--keyboards/murcielago/readme.md12
-rw-r--r--keyboards/murcielago/rev1/config.h97
-rw-r--r--keyboards/murcielago/rev1/keymaps/default/keymap.c130
-rw-r--r--keyboards/murcielago/rev1/keymaps/via/keymap.c130
-rw-r--r--keyboards/murcielago/rev1/keymaps/via/rules.mk1
-rw-r--r--keyboards/murcielago/rev1/rules.mk34
-rw-r--r--keyboards/murcielago/rules.mk1
10 files changed, 483 insertions, 0 deletions
diff --git a/keyboards/murcielago/info.json b/keyboards/murcielago/info.json
new file mode 100644
index 000000000..db6d7db75
--- /dev/null
+++ b/keyboards/murcielago/info.json
@@ -0,0 +1,12 @@
1{
2 "keyboard_name": "Murciélago",
3 "url": "",
4 "maintainer": "elagil",
5 "width": 16,
6 "height": 10.025,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [{"label":"0,3", "x":3.5, "y":0.25}, {"label":"6,2", "x":12, "y":0.25}, {"label":"0,2", "x":2.5, "y":0.375}, {"label":"0,4", "x":4.5, "y":0.375}, {"label":"6,1", "x":11, "y":0.375}, {"label":"6,3", "x":13, "y":0.375}, {"label":"0,1", "x":1.5, "y":0.5}, {"label":"0,5", "x":5.5, "y":0.5}, {"label":"6,0", "x":10, "y":0.5}, {"label":"6,4", "x":14, "y":0.5}, {"label":"0,0", "x":0.5, "y":0.675}, {"label":"6,5", "x":15, "y":0.675}, {"label":"1,3", "x":3.5, "y":1.25}, {"label":"7,2", "x":12, "y":1.25}, {"label":"1,2", "x":2.5, "y":1.375}, {"label":"1,4", "x":4.5, "y":1.375}, {"label":"7,1", "x":11, "y":1.375}, {"label":"7,3", "x":13, "y":1.375}, {"label":"1,1", "x":1.5, "y":1.5}, {"label":"1,5", "x":5.5, "y":1.5}, {"label":"7,0", "x":10, "y":1.5}, {"label":"7,4", "x":14, "y":1.5}, {"label":"1,0", "x":0.5, "y":1.675}, {"label":"7,5", "x":15, "y":1.675}, {"label":"2,3", "x":3.5, "y":2.25}, {"label":"8,2", "x":12, "y":2.25}, {"label":"2,2", "x":2.5, "y":2.375}, {"label":"2,4", "x":4.5, "y":2.375}, {"label":"8,1", "x":11, "y":2.375}, {"label":"8,3", "x":13, "y":2.375}, {"label":"2,1", "x":1.5, "y":2.5}, {"label":"2,5", "x":5.5, "y":2.5}, {"label":"8,0", "x":10, "y":2.5}, {"label":"8,4", "x":14, "y":2.5}, {"label":"2,0", "x":0.5, "y":2.675}, {"label":"8,5", "x":15, "y":2.675}, {"label":"3,3", "x":3.5, "y":3.25}, {"label":"9,2", "x":12, "y":3.25}, {"label":"3,2", "x":2.5, "y":3.375}, {"label":"3,4", "x":4.5, "y":3.375}, {"label":"9,1", "x":11, "y":3.375}, {"label":"9,3", "x":13, "y":3.375}, {"label":"3,1", "x":1.5, "y":3.5}, {"label":"3,5", "x":5.5, "y":3.5}, {"label":"5,5", "x":6.5, "y":3.5}, {"label":"11,0", "x":9, "y":3.5}, {"label":"9,0", "x":10, "y":3.5}, {"label":"9,4", "x":14, "y":3.5}, {"label":"3,0", "x":0.5, "y":3.675}, {"label":"9,5", "x":15, "y":3.675}, {"label":"4,2", "x":3.2, "y":4.3}, {"label":"10,3", "x":12.3, "y":4.3}, {"label":"4,3", "x":4.2, "y":4.4}, {"label":"10,2", "x":11.3, "y":4.4}, {"label":"4,1", "x":2.2, "y":4.5}, {"label":"4,5", "x":6.3, "y":4.5, "h":1.5}, {"label":"10,0", "x":9.2, "y":4.5, "h":1.5}, {"label":"10,4", "x":13.3, "y":4.5}, {"label":"4,4", "x":5.2, "y":4.6}, {"label":"10,1", "x":10.3, "y":4.6}]
10 }
11 }
12} \ No newline at end of file
diff --git a/keyboards/murcielago/murcielago.c b/keyboards/murcielago/murcielago.c
new file mode 100644
index 000000000..30215c69c
--- /dev/null
+++ b/keyboards/murcielago/murcielago.c
@@ -0,0 +1,17 @@
1/* Copyright 2020 elagil
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 "murcielago.h" \ No newline at end of file
diff --git a/keyboards/murcielago/murcielago.h b/keyboards/murcielago/murcielago.h
new file mode 100644
index 000000000..458df972f
--- /dev/null
+++ b/keyboards/murcielago/murcielago.h
@@ -0,0 +1,49 @@
1/* Copyright 2020 elagil
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.k
28 */
29
30#define LAYOUT( \
31 L00, L01, L02, L03, L04, L05, R01, R02, R03, R04, R05, R06, \
32 L10, L11, L12, L13, L14, L15, R11, R12, R13, R14, R15, R16, \
33 L20, L21, L22, L23, L24, L25, R21, R22, R23, R24, R25, R26, \
34 L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \
35 L41, L42, L43, L44, L45, R41, R42, R43, R44, R45 \
36) { \
37 { L00, L01, L02, L03, L04, L05 },\
38 { L10, L11, L12, L13, L14, L15 },\
39 { L20, L21, L22, L23, L24, L25 },\
40 { L30, L31, L32, L33, L34, L35 },\
41 { KC_NO, L41, L42, L43, L44, L45 },\
42 { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, L36 },\
43 { R01, R02, R03, R04, R05, R06 },\
44 { R11, R12, R13, R14, R15, R16 },\
45 { R21, R22, R23, R24, R25, R26 },\
46 { R31, R32, R33, R34, R35, R36 },\
47 { R41, R42, R43, R44, R45, KC_NO },\
48 { R30, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
49}
diff --git a/keyboards/murcielago/readme.md b/keyboards/murcielago/readme.md
new file mode 100644
index 000000000..f7208c166
--- /dev/null
+++ b/keyboards/murcielago/readme.md
@@ -0,0 +1,12 @@
1# Murciélago (the bat)
2
3The Murciélago is a split ortholinear keyboard with 60 keys in a 6x4 layout + 6 thumb keys (per side). At the upper thumb positions, rotary encoders can be used instead of switches. A single-color backlight may be used as a layer indicator.
4
5* Keyboard Maintainer: [elagil](https://github.com/elagil)
6* Hardware Supported: [murcielago](https://github.com/elagil/murcielago)
7
8Make example for this keyboard (after setting up your build environment):
9
10 make murcielago/rev1:default
11
12See 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/murcielago/rev1/config.h b/keyboards/murcielago/rev1/config.h
new file mode 100644
index 000000000..425c79e6c
--- /dev/null
+++ b/keyboards/murcielago/rev1/config.h
@@ -0,0 +1,97 @@
1/*
2Copyright 2020 elagil
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#pragma once
18
19#include "config_common.h"
20
21/* USB Device descriptor parameter */
22#define VENDOR_ID 0x6166 // af
23#define PRODUCT_ID 0x0001
24#define DEVICE_VER 0x0002
25#define MANUFACTURER elagil
26#define PRODUCT Murciélago
27#define DESCRIPTION A custom keyboard with 60 keys
28
29/* key matrix size */
30#define MATRIX_ROWS 12
31#define MATRIX_COLS 6
32
33/* split options, use EEPROM for side detection */
34#define EE_HANDS
35#define SPLIT_USB_DETECT
36
37/*
38 * Keyboard Matrix Assignments
39 *
40 * Change this to how you wired your keyboard
41 * COLS: AVR pins used for columns, left to right
42 * ROWS: AVR pins used for rows, top to bottom
43 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
44 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
45 *
46 */
47#define MATRIX_ROW_PINS { B4, D5, B3, B2, B1, B0 }
48#define MATRIX_COL_PINS { C6, B6, B5, D7, D6, D4 }
49#define MATRIX_ROW_PINS_RIGHT { B3, B7, D4, B6, C6, C7 }
50#define MATRIX_COL_PINS_RIGHT { D6, D7, D3, B2, B1, B0 }
51
52#define ENCODERS_PAD_A { F0 }
53#define ENCODERS_PAD_B { F1 }
54#define ENCODERS_PAD_A_RIGHT { F6 }
55#define ENCODERS_PAD_B_RIGHT { F7 }
56
57#define UNUSED_PINS
58
59/* COL2ROW, ROW2COL*/
60#define DIODE_DIRECTION COL2ROW
61
62/*
63 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
64 */
65#define SOFT_SERIAL_PIN E6
66
67/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
68#define DEBOUNCE 5
69
70/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
71#define LOCKING_SUPPORT_ENABLE
72/* Locking resynchronize hack */
73#define LOCKING_RESYNC_ENABLE
74
75/*
76 * Feature disable options
77 * These options are also useful to firmware size reduction.
78 */
79
80/* disable debug print */
81//#define NO_DEBUG
82
83/* disable print */
84//#define NO_PRINT
85
86/* disable action features */
87//#define NO_ACTION_LAYER
88//#define NO_ACTION_TAPPING
89//#define NO_ACTION_ONESHOT
90
91/* disable these deprecated features by default */
92#define NO_ACTION_MACRO
93#define NO_ACTION_FUNCTION
94
95/* Bootmagic Lite key configuration */
96// #define BOOTMAGIC_LITE_ROW 0
97// #define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/murcielago/rev1/keymaps/default/keymap.c b/keyboards/murcielago/rev1/keymaps/default/keymap.c
new file mode 100644
index 000000000..b3abed763
--- /dev/null
+++ b/keyboards/murcielago/rev1/keymaps/default/keymap.c
@@ -0,0 +1,130 @@
1#include QMK_KEYBOARD_H
2
3enum layers {
4 BASE,
5 _RAISE,
6 _LOWER,
7 _POWER
8};
9
10#define PRE_WRD LCTL(KC_LEFT) // jump to next word
11#define NXT_WRD LCTL(KC_RGHT) // jump to previous word
12
13#define NXT_WDL LCTL(KC_DEL) // delete next word
14#define PRE_WDL LCTL(KC_BSPC) // delete previous word
15
16#define KC_EURO ALGR(KC_5)
17#define LA_CAP MT(MOD_LALT, KC_CAPS) // Left alt on hold, caps lock on tap
18#define RA_ENT MT(MOD_RALT, KC_ENT) // Right alt on hold, enter on tap
19
20#define RAISE MO(_RAISE) // Raise layer access
21#define LOWER MO(_LOWER) // Lower layer access
22#define POWER MO(_POWER) // Power layer access (raise and lower)
23
24/*
25 * This default keymap is aimed at users of the US international layout
26 */
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 /* BASE
29 * ,-----------------------------------------. ,-----------------------------------------.
30 * | =+ | 1! | 2@ | 3# | 4$ | 5% | | 6^ | 7& | 8* | 9( | 0) | -_ |
31 * |------+------+------+------+------+------| |------+------+------+------+------+------|
32 * | [{ | Q | W | E | R | T | | Y | U | I | O | P | }] |
33 * |------+------+------+------+------+------| |------+------+------+------+------+------|
34 * | Del | A | S | D | F | G | | H | J | K | L | ;: | '" |
35 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
36 * | Sft | Z | X | C | V | B | GEsc | | Tab | N | M | ,< | .> | /? | Sft |
37 * `------------------------------------------------' `------------------------------------------------'
38 * | LA/CL| LGUI |LOWER | Back | Ctrl | |RA/Ent|Space |RAISE | RGUI | Play |
39 * `----------------------------------' `----------------------------------'
40 */
41 [BASE] = LAYOUT( /* qwerty */
42 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
43 KC_LBRC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_RBRC,
44 KC_DEL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
45 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_GESC, KC_TAB, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
46 LA_CAP, KC_LGUI, LOWER, KC_BSPC, KC_LCTL, RA_ENT, KC_SPC, RAISE, KC_RGUI, KC_MPLY
47 ),
48
49 /* RAISE
50 * ,-----------------------------------------. ,-----------------------------------------.
51 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
52 * |------+------+------+------+------+------| |------+------+------+------+------+------|
53 * | | ! | @ | # | $ | % | | |PRE W | UP |NXT W | | F12 |
54 * |------+------+------+------+------+------| |------+------+------+------+------+------|
55 * | | | | ( | [ | { | < | | | LEFT | DOWN |RIGHT | | |
56 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
57 * | | ~ | = | + | \ | | | | | |DEL PW| Ins |DEL NW| | |
58 * `------------------------------------------------' `------------------------------------------------'
59 * | | |POWER | | | | | | | | |
60 * `----------------------------------' `----------------------------------'
61 */
62 [_RAISE] = LAYOUT( /* raise layer */
63 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
64 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, XXXXXXX, PRE_WRD, KC_UP, NXT_WRD, XXXXXXX, KC_F12,
65 _______, KC_PIPE, KC_LPRN, KC_LBRC, KC_LCBR, KC_LABK, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX,
66 _______, KC_TILD, KC_EQL, KC_PLUS, KC_BSLS, XXXXXXX, _______, _______, XXXXXXX, PRE_WDL, KC_INS, NXT_WDL, XXXXXXX, _______,
67 _______, _______, POWER, _______, _______, _______, _______, _______, _______, _______
68 ),
69
70 /* LOWER
71 * ,-----------------------------------------. ,-----------------------------------------.
72 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
73 * |------+------+------+------+------+------| |------+------+------+------+------+------|
74 * | | |PRE W | UP |NXT W | | | ^ | & | * | € | ? | F12 |
75 * |------+------+------+------+------+------| |------+------+------+------+------+------|
76 * | | | LEFT | DOWN |RIGHT | | | > | } | ] | ) | | | |
77 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
78 * | | |DEL PW| Ins |DEL NW| | | | | | / | - | _ | ` | |
79 * `------------------------------------------------' `------------------------------------------------'
80 * | | | | | | | | |POWER | | |
81 * `----------------------------------' `----------------------------------'
82 */
83 [_LOWER] = LAYOUT( /* lower layer */
84 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
85 _______, XXXXXXX, PRE_WRD, KC_UP, NXT_WRD, XXXXXXX, KC_CIRC, KC_AMPR, KC_ASTR, KC_EURO, KC_QUES, KC_F12,
86 _______, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, KC_RABK, KC_RCBR, KC_RBRC, KC_RPRN, KC_PIPE, XXXXXXX,
87 _______, XXXXXXX, PRE_WDL, KC_INS, NXT_WDL, XXXXXXX, _______, _______, XXXXXXX, KC_SLSH, KC_MINS, KC_UNDS, KC_GRV, _______,
88 _______, _______, _______, _______, _______, _______, _______, POWER, _______, _______
89 ),
90
91 /* POWER
92 * ,-----------------------------------------. ,-----------------------------------------.
93 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
94 * |------+------+------+------+------+------| |------+------+------+------+------+------|
95 * | | ! | @ | # | $ | % | | ^ | & | * | € | ? | F12 |
96 * |------+------+------+------+------+------| |------+------+------+------+------+------|
97 * | | | | ( | [ | { | < | | > | } | ] | ) | | | |
98 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
99 * | | ~ | = | + | \ | | | | | | / | - | _ | ` | |
100 * `------------------------------------------------' `------------------------------------------------'
101 * | | | | | | | | | | | |
102 * `----------------------------------' `----------------------------------'
103 */
104 [_POWER] = LAYOUT( /* lower and raise combined */
105 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
106 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_EURO, KC_QUES, KC_F12,
107 _______, KC_PIPE, KC_LPRN, KC_LBRC, KC_LCBR, KC_LABK, KC_RABK, KC_RCBR, KC_RBRC, KC_RPRN, KC_PIPE, XXXXXXX,
108 _______, KC_TILD, KC_EQL, KC_PLUS, KC_BSLS, XXXXXXX, _______, _______, XXXXXXX, KC_SLSH, KC_MINS, KC_UNDS, KC_GRV, _______,
109 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
110 )
111
112};
113
114void encoder_update_user(uint8_t index, bool clockwise) {
115 switch (get_highest_layer(layer_state)) {
116 case _RAISE:
117 if (index == 0 || index == 1) { /* Left or right encoder */
118 // Next/previous track
119 clockwise ? tap_code(KC_MNXT) : tap_code(KC_MPRV);
120 }
121 break;
122
123 default:
124 if (index == 0 || index == 1) { /* Left or right encoder */
125 // Volume up or down
126 clockwise ? tap_code(KC_VOLU) : tap_code(KC_VOLD);
127 }
128 break;
129 }
130} \ No newline at end of file
diff --git a/keyboards/murcielago/rev1/keymaps/via/keymap.c b/keyboards/murcielago/rev1/keymaps/via/keymap.c
new file mode 100644
index 000000000..b3abed763
--- /dev/null
+++ b/keyboards/murcielago/rev1/keymaps/via/keymap.c
@@ -0,0 +1,130 @@
1#include QMK_KEYBOARD_H
2
3enum layers {
4 BASE,
5 _RAISE,
6 _LOWER,
7 _POWER
8};
9
10#define PRE_WRD LCTL(KC_LEFT) // jump to next word
11#define NXT_WRD LCTL(KC_RGHT) // jump to previous word
12
13#define NXT_WDL LCTL(KC_DEL) // delete next word
14#define PRE_WDL LCTL(KC_BSPC) // delete previous word
15
16#define KC_EURO ALGR(KC_5)
17#define LA_CAP MT(MOD_LALT, KC_CAPS) // Left alt on hold, caps lock on tap
18#define RA_ENT MT(MOD_RALT, KC_ENT) // Right alt on hold, enter on tap
19
20#define RAISE MO(_RAISE) // Raise layer access
21#define LOWER MO(_LOWER) // Lower layer access
22#define POWER MO(_POWER) // Power layer access (raise and lower)
23
24/*
25 * This default keymap is aimed at users of the US international layout
26 */
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 /* BASE
29 * ,-----------------------------------------. ,-----------------------------------------.
30 * | =+ | 1! | 2@ | 3# | 4$ | 5% | | 6^ | 7& | 8* | 9( | 0) | -_ |
31 * |------+------+------+------+------+------| |------+------+------+------+------+------|
32 * | [{ | Q | W | E | R | T | | Y | U | I | O | P | }] |
33 * |------+------+------+------+------+------| |------+------+------+------+------+------|
34 * | Del | A | S | D | F | G | | H | J | K | L | ;: | '" |
35 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
36 * | Sft | Z | X | C | V | B | GEsc | | Tab | N | M | ,< | .> | /? | Sft |
37 * `------------------------------------------------' `------------------------------------------------'
38 * | LA/CL| LGUI |LOWER | Back | Ctrl | |RA/Ent|Space |RAISE | RGUI | Play |
39 * `----------------------------------' `----------------------------------'
40 */
41 [BASE] = LAYOUT( /* qwerty */
42 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
43 KC_LBRC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_RBRC,
44 KC_DEL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
45 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_GESC, KC_TAB, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
46 LA_CAP, KC_LGUI, LOWER, KC_BSPC, KC_LCTL, RA_ENT, KC_SPC, RAISE, KC_RGUI, KC_MPLY
47 ),
48
49 /* RAISE
50 * ,-----------------------------------------. ,-----------------------------------------.
51 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
52 * |------+------+------+------+------+------| |------+------+------+------+------+------|
53 * | | ! | @ | # | $ | % | | |PRE W | UP |NXT W | | F12 |
54 * |------+------+------+------+------+------| |------+------+------+------+------+------|
55 * | | | | ( | [ | { | < | | | LEFT | DOWN |RIGHT | | |
56 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
57 * | | ~ | = | + | \ | | | | | |DEL PW| Ins |DEL NW| | |
58 * `------------------------------------------------' `------------------------------------------------'
59 * | | |POWER | | | | | | | | |
60 * `----------------------------------' `----------------------------------'
61 */
62 [_RAISE] = LAYOUT( /* raise layer */
63 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
64 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, XXXXXXX, PRE_WRD, KC_UP, NXT_WRD, XXXXXXX, KC_F12,
65 _______, KC_PIPE, KC_LPRN, KC_LBRC, KC_LCBR, KC_LABK, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX,
66 _______, KC_TILD, KC_EQL, KC_PLUS, KC_BSLS, XXXXXXX, _______, _______, XXXXXXX, PRE_WDL, KC_INS, NXT_WDL, XXXXXXX, _______,
67 _______, _______, POWER, _______, _______, _______, _______, _______, _______, _______
68 ),
69
70 /* LOWER
71 * ,-----------------------------------------. ,-----------------------------------------.
72 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
73 * |------+------+------+------+------+------| |------+------+------+------+------+------|
74 * | | |PRE W | UP |NXT W | | | ^ | & | * | € | ? | F12 |
75 * |------+------+------+------+------+------| |------+------+------+------+------+------|
76 * | | | LEFT | DOWN |RIGHT | | | > | } | ] | ) | | | |
77 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
78 * | | |DEL PW| Ins |DEL NW| | | | | | / | - | _ | ` | |
79 * `------------------------------------------------' `------------------------------------------------'
80 * | | | | | | | | |POWER | | |
81 * `----------------------------------' `----------------------------------'
82 */
83 [_LOWER] = LAYOUT( /* lower layer */
84 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
85 _______, XXXXXXX, PRE_WRD, KC_UP, NXT_WRD, XXXXXXX, KC_CIRC, KC_AMPR, KC_ASTR, KC_EURO, KC_QUES, KC_F12,
86 _______, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, KC_RABK, KC_RCBR, KC_RBRC, KC_RPRN, KC_PIPE, XXXXXXX,
87 _______, XXXXXXX, PRE_WDL, KC_INS, NXT_WDL, XXXXXXX, _______, _______, XXXXXXX, KC_SLSH, KC_MINS, KC_UNDS, KC_GRV, _______,
88 _______, _______, _______, _______, _______, _______, _______, POWER, _______, _______
89 ),
90
91 /* POWER
92 * ,-----------------------------------------. ,-----------------------------------------.
93 * | RST | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
94 * |------+------+------+------+------+------| |------+------+------+------+------+------|
95 * | | ! | @ | # | $ | % | | ^ | & | * | € | ? | F12 |
96 * |------+------+------+------+------+------| |------+------+------+------+------+------|
97 * | | | | ( | [ | { | < | | > | } | ] | ) | | | |
98 * |------+------+------+------+------+------+------. ,------+------+------+------+------+------+------|
99 * | | ~ | = | + | \ | | | | | | / | - | _ | ` | |
100 * `------------------------------------------------' `------------------------------------------------'
101 * | | | | | | | | | | | |
102 * `----------------------------------' `----------------------------------'
103 */
104 [_POWER] = LAYOUT( /* lower and raise combined */
105 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
106 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_EURO, KC_QUES, KC_F12,
107 _______, KC_PIPE, KC_LPRN, KC_LBRC, KC_LCBR, KC_LABK, KC_RABK, KC_RCBR, KC_RBRC, KC_RPRN, KC_PIPE, XXXXXXX,
108 _______, KC_TILD, KC_EQL, KC_PLUS, KC_BSLS, XXXXXXX, _______, _______, XXXXXXX, KC_SLSH, KC_MINS, KC_UNDS, KC_GRV, _______,
109 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
110 )
111
112};
113
114void encoder_update_user(uint8_t index, bool clockwise) {
115 switch (get_highest_layer(layer_state)) {
116 case _RAISE:
117 if (index == 0 || index == 1) { /* Left or right encoder */
118 // Next/previous track
119 clockwise ? tap_code(KC_MNXT) : tap_code(KC_MPRV);
120 }
121 break;
122
123 default:
124 if (index == 0 || index == 1) { /* Left or right encoder */
125 // Volume up or down
126 clockwise ? tap_code(KC_VOLU) : tap_code(KC_VOLD);
127 }
128 break;
129 }
130} \ No newline at end of file
diff --git a/keyboards/murcielago/rev1/keymaps/via/rules.mk b/keyboards/murcielago/rev1/keymaps/via/rules.mk
new file mode 100644
index 000000000..036bd6d1c
--- /dev/null
+++ b/keyboards/murcielago/rev1/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/murcielago/rev1/rules.mk b/keyboards/murcielago/rev1/rules.mk
new file mode 100644
index 000000000..f8faea6c3
--- /dev/null
+++ b/keyboards/murcielago/rev1/rules.mk
@@ -0,0 +1,34 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5# Teensy halfkay
6# Pro Micro caterina
7# Atmel DFU atmel-dfu
8# LUFA DFU lufa-dfu
9# QMK DFU qmk-dfu
10# ATmega32A bootloadHID
11# ATmega328P USBasp
12BOOTLOADER = atmel-dfu
13
14# Build Options
15# change yes to no to disable
16#
17BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
18MOUSEKEY_ENABLE = yes # Mouse keys
19EXTRAKEY_ENABLE = yes # Audio control and System control
20CONSOLE_ENABLE = no # Console for debug
21COMMAND_ENABLE = no # Commands for debug and configuration
22# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
23SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
24# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
25NKRO_ENABLE = no # USB Nkey Rollover
26BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
27RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
28MIDI_ENABLE = no # MIDI support
29BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
30AUDIO_ENABLE = no # Audio output on port C6
31FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
32HD44780_ENABLE = no # Enable support for HD44780 based LCDs
33SPLIT_KEYBOARD = yes # Enable split keyboard mode
34ENCODER_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/murcielago/rules.mk b/keyboards/murcielago/rules.mk
new file mode 100644
index 000000000..661563697
--- /dev/null
+++ b/keyboards/murcielago/rules.mk
@@ -0,0 +1 @@
DEFAULT_FOLDER = murcielago/rev1 \ No newline at end of file