diff options
author | fordmr <mrford17@gmail.com> | 2018-06-25 19:11:14 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-06-25 17:11:14 -0700 |
commit | fc975fc2556ac2c4bc98f45ace63f25ce90e2a53 (patch) | |
tree | d3474f6112b109dec468ffd813847c6421631f57 /keyboards/iris/keymaps/s1carii/config.h | |
parent | 52906ad4ba4376cc57db7288ecc58c7c5850fc3b (diff) |
New Pok3r Based Keymap (#3226)
* Create keymap.c
Modified the default to be way more like a pok3r, already clear that it needs a better ctrl location.
* Delete keymap.c
* Create keymap.c
Modified the default keymap to be more like a pok3r, clearly needs a better ctrl location and probably some other tweaks.
* Add files via upload
* Update keymap.c
Parenthesis correction.
* Parenthetical cleanup
Forgot one...
* Mods and numpad; cleanup
Rework mods and numpad layer, remove superfluous declarations
* comment define devlayer
* Create readme.md
Background and intention.
* Updated to fit example
* Update readme.md
* Update rules.mk
* Update config.h
* Updated includes
Replaced:
#include "iris.h"
#include "action_layer.h"
#include "eeconfig.h"
With:
#include QMK_KEYBOARD_H
* Update rules.mk
Removed RGB enable declarations
* Update rules.mk
* Update keymap.c
Spaced out on MINS and EQL.
* Update rules.mk
Removed unnecessary block.
* Remove the RGB call
Make would fail because of the RGB call that wasn't anywhere but here, cleaned that up from the default config.
* Update keymap.c
Added [ and ] since I'd forgotten them originally...
Diffstat (limited to 'keyboards/iris/keymaps/s1carii/config.h')
-rw-r--r-- | keyboards/iris/keymaps/s1carii/config.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboards/iris/keymaps/s1carii/config.h b/keyboards/iris/keymaps/s1carii/config.h new file mode 100644 index 0000000000..7186744b77 --- /dev/null +++ b/keyboards/iris/keymaps/s1carii/config.h @@ -0,0 +1,34 @@ +/*
+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"
+
+/* Use I2C or Serial, not both */
+
+#define USE_SERIAL
+// #define USE_I2C
+
+/* Select hand configuration */
+
+#define MASTER_LEFT
+// #define MASTER_RIGHT
+// #define EE_HANDS
+
+#endif
|