Browse Source

Add isolike iris layout (#5157)

Keeps it simple and most keys in a similar position (at least relative
to other keys) to a standard ISO layout.
pull/5165/head
Thomas Spurden 5 years ago
committed by MechMerlin
parent
commit
8911870b45
4 changed files with 85 additions and 0 deletions
  1. +36
    -0
      keyboards/keebio/iris/keymaps/isolike/config.h
  2. +42
    -0
      keyboards/keebio/iris/keymaps/isolike/keymap.c
  3. +5
    -0
      keyboards/keebio/iris/keymaps/isolike/readme.md
  4. +2
    -0
      keyboards/keebio/iris/keymaps/isolike/rules.mk

+ 36
- 0
keyboards/keebio/iris/keymaps/isolike/config.h View File

@ -0,0 +1,36 @@
/*
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/>.
*/
#pragma once
/* Use I2C or Serial, not both */
#define USE_SERIAL
// #define USE_I2C
/* Select hand configuration */
#define MASTER_LEFT
// #define MASTER_RIGHT
// #define EE_HANDS
#undef RGBLED_NUM
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 12
#define RGBLIGHT_HUE_STEP 8
#define RGBLIGHT_SAT_STEP 8
#define RGBLIGHT_VAL_STEP 8

+ 42
- 0
keyboards/keebio/iris/keymaps/isolike/keymap.c View File

@ -0,0 +1,42 @@
#include QMK_KEYBOARD_H
extern keymap_config_t keymap_config;
#define _QWERTY 0
#define _RAISE 1
enum custom_keycodes {
QWERTY = SAFE_RANGE,
RAISE,
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_QWERTY] = LAYOUT(
//
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
//
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
//
KC_NUBS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
//
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_ENT, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
//
KC_LCTL, MO(_RAISE),KC_SPC, KC_SPC, MO(_RAISE),KC_LALT
//
),
[_RAISE] = LAYOUT(
//
KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
//
KC_INS, KC_HOME, KC_UP, KC_END, _______, KC_PGUP, KC_WH_U, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, _______,
//
_______, KC_LEFT, KC_DOWN, KC_RGHT, _______, KC_PGDN, KC_WH_D, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_NUHS,
//
_______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, KC_LCTL, KC_LALT, KC_RALT, KC_RGUI, KC_RCTL, KC_GRV,
//
KC_LGUI, _______, _______, _______, _______, KC_APP
//
)
};

+ 5
- 0
keyboards/keebio/iris/keymaps/isolike/readme.md View File

@ -0,0 +1,5 @@
# isolike keymap
Modelled on the ISO keyboard layout. Key positions should feel quite familiar to
ISO layout users. There is only two layers. The space, enter and raise keys are
mirrored on both hands to make it easier to remember and type on.

+ 2
- 0
keyboards/keebio/iris/keymaps/isolike/rules.mk View File

@ -0,0 +1,2 @@
RGBLIGHT_ENABLE = no
BACKLIGHT_ENABLE = no

Loading…
Cancel
Save