Added dbroqua layout for Iris keyboard (#3414)
* - Fixed DK60 version in config.h * - Updated dk60 readme with new QMK rules * - Fixed wording in readme * Added dbroqua layout for DZ60 I've also updated dz60.h to add "true HHKD" keymap definition (6U spacebar). With the default HHKB definition r_alt was not mapped and when I pressed r_menu it was r_alt. Regards * Updated dbroqua layout for HHKB keyboard Added default configuration and alternate (swap gui/alt keys). Save user choice in keyboard memory (like plank, thanks for this feature!). * Added dbroqua layout for Iris keyboard * Updated layout and fixed includesdaktil_thumb_popravljen
parent
f2fcffab0d
commit
c37ce43437
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
Copyright 2017 Danny Nguyen <danny@keeb.io>
|
||||
|
||||
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/>.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_USER_H
|
||||
#define CONFIG_USER_H
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
#define USE_SERIAL
|
||||
|
||||
#define MASTER_LEFT
|
||||
|
||||
#endif
|
|
@ -0,0 +1,125 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
extern keymap_config_t keymap_config;
|
||||
|
||||
#define _QWERTY 0
|
||||
#define _LOWER 1
|
||||
#define _RAISE 2
|
||||
|
||||
enum custom_keycodes {
|
||||
QWERTY = SAFE_RANGE,
|
||||
LOWER,
|
||||
RAISE,
|
||||
};
|
||||
|
||||
#define KC_ KC_TRNS
|
||||
#define _______ KC_TRNS
|
||||
|
||||
#define KC_LOWR LOWER
|
||||
#define KC_RASE RAISE
|
||||
#define KC_RST RESET
|
||||
#define KC_DBUG DEBUG
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[_QWERTY] = LAYOUT_kc(
|
||||
/*
|
||||
* ,-----+-----+-----+-----+-----+-----+ ,-----+-----+-----+-----+-----+-----+
|
||||
* | ESC | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | ` |
|
||||
* |-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | TAB | Q | W | E | R | T | | Y | U | I | O | P | BSPC|
|
||||
* +-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | LCTL| A | S | D | F | G | | H | J | K | L | ; | ' |
|
||||
* +-----+-----+-----+-----+-----+-----+-----. ,-----+-----+-----+-----+-----+-----+-----+
|
||||
* | LSFT| Z | X | C | V | B | / \ | N | M | , | . | / | RSFT|
|
||||
* +-----+-----+-----+--+--+-----+-----+ SPC/ \ ENT+-----+-----+--+--+-----+-----+-----+
|
||||
* \ LGUI| LOWR| / \ | RASE| LALT/
|
||||
* `-----+-----+-----' `-----+-----+----'
|
||||
*/
|
||||
ESC , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , GRV,
|
||||
TAB , Q , W , E , R , T , Y , U , I , O , P ,BSPC,
|
||||
LCTL, A , S , D , F , G , H , J , K , L ,SCLN,QUOT,
|
||||
LSFT, Z , X , C , V , B , , , N , M ,COMM,DOT ,SLSH,RSFT,
|
||||
LGUI,LOWR, SPC , ENT ,RASE,LALT
|
||||
),
|
||||
|
||||
[_LOWER] = LAYOUT_kc(
|
||||
/*
|
||||
* ,-----+-----+-----+-----+-----+-----+ ,-----+-----+-----+-----+-----+-----+
|
||||
* | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BSPC|
|
||||
* |-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | RST | 1 | 2 | 3 | 5 | 5 | | 6 | 7 | 8 | 9 | 0 | |
|
||||
* +-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | DEL | | LEFT| RGHT| UP | [ | | ] | 4 | 5 | 6 | + | | |
|
||||
* +-----+-----+-----+-----+-----+-----+-----. ,-----+-----+-----+-----+-----+-----+-----+
|
||||
* | | | | | DOWN| { | / \ | } | 1 | 2 | 3 | - | |
|
||||
* +-----+-----+-----+--+--+-----+-----+ DEL/ \ DEL+-----+-----+--+--+-----+-----+-----+
|
||||
* \ | | / \ | | 0 /
|
||||
* `-----+-----+-----' `-----+-----+----'
|
||||
*/
|
||||
TILD,EXLM, AT ,HASH,DLR ,PERC, CIRC,AMPR,ASTR,LPRN,RPRN,BSPC,
|
||||
RST , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , ,
|
||||
DEL , ,LEFT,RGHT, UP ,LBRC, RBRC, P4 , P5 , P6 ,PLUS,PIPE,
|
||||
, , , ,DOWN,LCBR, , ,RCBR, P1 , P2 , P3 ,MINS, ,
|
||||
, ,DEL , DEL , , P0
|
||||
),
|
||||
|
||||
[_RAISE] = LAYOUT_kc(
|
||||
/*
|
||||
* ,-----+-----+-----+-----+-----+-----+ ,-----+-----+-----+-----+-----+-----+
|
||||
* | F12 | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
|
||||
* |-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
||||
* +-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+
|
||||
* | | Prev| Next| Vol+| PgUp| _ | | = | Home| | | + | \ |
|
||||
* +-----+-----+-----+-----+-----+-----+-----. ,-----+-----+-----+-----+-----+-----+-----+
|
||||
* | Mute| Stop| Play| Vol-| PgDn| - | / \ | + | End | | | |Debug|
|
||||
* +-----+-----+-----+--+--+-----+-----+ / \ +-----+-----+--+--+-----+-----+-----+
|
||||
* \ | | / \ | | 0 /
|
||||
* `-----+-----+-----' `-----+-----+----'
|
||||
*/
|
||||
F12 , F1 , F2 , F3 , F4 , F5 , F6 , F7 , F8 , F9 ,F10 ,F11 ,
|
||||
,EXLM, AT ,HASH,DLR ,PERC, CIRC,AMPR,ASTR,LPRN,RPRN, ,
|
||||
,MPRV,MNXT,VOLU,PGUP,UNDS, EQL ,HOME, , , ,BSLS,
|
||||
MUTE,MSTP,MPLY,VOLD,PGDN,MINS, , ,PLUS,END , , , ,DBUG,
|
||||
, , , , ,
|
||||
)
|
||||
};
|
||||
|
||||
void persistent_default_layer_set(uint16_t default_layer) {
|
||||
eeconfig_update_default_layer(default_layer);
|
||||
default_layer_set(default_layer);
|
||||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case QWERTY:
|
||||
if (record->event.pressed) {
|
||||
persistent_default_layer_set(1UL<<_QWERTY);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case LOWER:
|
||||
if (record->event.pressed) {
|
||||
layer_on(_LOWER);
|
||||
update_tri_layer(_LOWER, _RAISE, _QWERTY);
|
||||
} else {
|
||||
layer_off(_LOWER);
|
||||
update_tri_layer(_LOWER, _RAISE, _QWERTY);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case RAISE:
|
||||
if (record->event.pressed) {
|
||||
layer_on(_RAISE);
|
||||
update_tri_layer(_LOWER, _RAISE, _QWERTY);
|
||||
} else {
|
||||
layer_off(_RAISE);
|
||||
update_tri_layer(_LOWER, _RAISE, _QWERTY);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
RGBLIGHT_ENABLE = no
|
||||
BACKLIGHT_ENABLE = no
|
Loading…
Reference in New Issue