diff options
author | Fabian Topfstedt <topfstedt@schneevonmorgen.com> | 2018-07-22 15:58:01 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-07-22 06:58:01 -0700 |
commit | 87dc2efda82b7186423abf21384dc8eb6421d68e (patch) | |
tree | 7afae01fb7f978c0213be0d050f70d842a4de244 /keyboards/iris/keymaps/fabian/config.h | |
parent | ed99581161b35b383ee9e1f5c070574524e9ea36 (diff) | |
download | qmk_firmware-87dc2efda82b7186423abf21384dc8eb6421d68e.tar.gz |
Keymap: Custom (fabian) layout for Iris and Planck (#3460)
* fabian layout
* added MOUSECURSOR layer that gets activated by holding space
* cleanup, meh and tilde and grave as separate keys, toggle switch for mousecursor layer
* merged default
* #pragma once
* including QMK_KEYBOARD_H instead of various imports
* using layer toggle instead of a function
* deleted obsolete rules.mk (was part of the old makefile system)
* #pragma once
* including QMK_KEYBOARD_H instead of various imports
* use ifndef KEYBOARD_planck_rev6 instead of ifdef KEYBOARD_planck_rev5
Diffstat (limited to 'keyboards/iris/keymaps/fabian/config.h')
-rw-r--r-- | keyboards/iris/keymaps/fabian/config.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/iris/keymaps/fabian/config.h b/keyboards/iris/keymaps/fabian/config.h new file mode 100644 index 000000000..faae942a8 --- /dev/null +++ b/keyboards/iris/keymaps/fabian/config.h @@ -0,0 +1,39 @@ +/* +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 + +// Add layout to the product identifier +#undef PRODUCT +#define PRODUCT Iris Keyboard (fabian) + +/* Use I2C or Serial, not both */ +// #define USE_SERIAL +#define USE_I2C + +/* Select hand configuration */ +#define MASTER_LEFT +// #define MASTER_RIGHT +// #define EE_HANDS + +// RGB configuration +#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 |