You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.8 KiB
86 lines
3.8 KiB
#include QMK_KEYBOARD_H
|
|
#include "edvorakjp.h"
|
|
|
|
/*
|
|
* enum custom_keycodes {
|
|
* KC_LOCK = NEW_SAFE_RANGE,
|
|
* };
|
|
*/
|
|
|
|
#define KC_ KC_TRNS
|
|
|
|
#define KC_TMB1 KC_LA(TAB)
|
|
#define KC_TMB2 KC_LS(SPC)
|
|
#define KC_TMB3 TD(TD_LOWER) // act as LOWER when hold, as KC_LANG2(=English) when tapped
|
|
#define KC_TMB4 TD(TD_RAISE) // act as RAISE when hold, as KC_LANG1(=Japanese) when tapped
|
|
#define KC_TMB5 KC_RC(BSPC)
|
|
#define KC_TMB6 KC_RG(ENT)
|
|
#define KC_TMB7 KC_RC(DEL)
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
[_EDVORAK] = LAYOUT_kc(
|
|
//,----+----+-----+-----+-----+----. ,----+-----+-----+-----+----+----.
|
|
GRV ,EXLM, AT ,HASH , DLR ,PERC, CIRC,AMPR ,ASTR ,LPRN ,RPRN,BSPC,
|
|
//|----+----+-----+-----+-----+----| |----+-----+-----+-----+----+----|
|
|
TAB ,QUOT,COMM , DOT , Y , Q , F , G , R , W , P ,BSLS,
|
|
//|----+----+-----+-----+-----+----| |----+-----+-----+-----+----+----|
|
|
EQL , A ,LA(O),LG(E),LC(I), U , D ,RS(T),RG(N),RA(S), M ,MINS,
|
|
//|----+----+-----+-----+-----+----+----. ,----+----+-----+-----+-----+----+----|
|
|
ESC ,SCLN, X , C , V , Z , NO , NO , H , J , K , L , B ,SLSH,
|
|
//`----+----+-----+-----+-----+----+----/ \----+----+-----+-----+-----+----+----'
|
|
TMB1,TMB2,TMB3, TMB4,TMB5,TMB6
|
|
// `----+----+----' `----+----+----'
|
|
),
|
|
|
|
[_LOWER] = LAYOUT_kc(
|
|
//,----+----+------+------+------+----. ,----+------+------+-------+----+----.
|
|
, , , , , , , , , , , ,
|
|
//|----+----+------+------+------+----| |----+------+------+-------+----+----|
|
|
, , LCBR , LBRC , LPRN , , , RPRN , RBRC , RCBR , , ,
|
|
//|----+----+------+------+------+----| |----+------+------+-------+----+----|
|
|
F1 , F2 ,LA(F3),LG(F4),LC(F5), F6 , F7 ,RS(F8),RG(F9),RA(F10),F11 ,F12 ,
|
|
//|----+----+------+------+------+----+----. ,----+----+------+------+-------+----+----|
|
|
PSCR, , HOME , PGDN , PGUP ,END , , ,LEFT, DOWN , UP , RGHT , , ,
|
|
//`----+----+------+------+------+----+----/ \----+----+------+------+-------+----+----'
|
|
, , NO , MAC ,TMB7,
|
|
// `----+----+----' `----+----+----'
|
|
),
|
|
|
|
[_RAISE] = LAYOUT_kc(
|
|
//,----+----+-----+-----+-----+----. ,----+-----+-----+-----+----+----.
|
|
, , , , , , , , , , , ,
|
|
//|----+----+-----+-----+-----+----| |----+-----+-----+-----+----+----|
|
|
, ,EXLM , AT ,HASH ,DLR , PERC,CIRC ,AMPR ,ASTR , , ,
|
|
//|----+----+-----+-----+-----+----| |----+-----+-----+-----+----+----|
|
|
, 1 ,LA(2),LG(3),LC(4), 5 , 6 ,RS(7),RG(8),RA(9), 0 , ,
|
|
//|----+----+-----+-----+-----+----+----. ,----+----+-----+-----+-----+----+----|
|
|
PSCR, ,HOME ,PGDN ,PGUP ,END , , ,LEFT,DOWN , UP ,RGHT , , ,
|
|
//`----+----+-----+-----+-----+----+----/ \----+----+-----+-----+-----+----+----'
|
|
, ,WIN , NO , ,
|
|
// `----+----+----' `----+----+----'
|
|
)
|
|
};
|
|
|
|
void matrix_init_keymap() {
|
|
}
|
|
|
|
#ifdef RGBLIGHT_EFFECT_STATIC_GRADIENT
|
|
uint32_t layer_state_set_keymap(uint32_t state) {
|
|
rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_LIGHT);
|
|
switch (biton32(state)) {
|
|
case _LOWER:
|
|
rgblight_sethsv_noeeprom_red();
|
|
break;
|
|
case _RAISE:
|
|
rgblight_sethsv_noeeprom_blue();
|
|
break;
|
|
default: // for any other layers, or the default layer
|
|
rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_GRADIENT + 3);
|
|
get_japanese_mode() ? rgblight_sethsv_noeeprom_red() : rgblight_sethsv_noeeprom_green();
|
|
break;
|
|
}
|
|
return state;
|
|
}
|
|
#endif
|