summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorstanrc85 <47038504+stanrc85@users.noreply.github.com>2019-05-21 13:59:08 -0400
committerDrashna Jaelre <drashna@live.com>2019-05-21 10:59:07 -0700
commita0d5f0722f8d045903670babbdc76ad1c5842b7c (patch)
tree38be6bcf6e835e14f00962907570ac5b779a1b90 /users
parent68501261c3a8dbf04a2f1de7ad23640e8074ab87 (diff)
[Keymap] Romac added and tweaks to existing keymaps (#5941)
* Initial keymap for Romac * Formatting changes * keymap tweaks * Add new cycle layer key * add cycle layer code * initial upload * keymap updates * keymap updates * keymap updates for new layer names * new enum layers * case added for 4th layer * removed extra space for formatting
Diffstat (limited to 'users')
-rw-r--r--users/stanrc85/layer_rgb.c25
-rw-r--r--users/stanrc85/stanrc85.h19
2 files changed, 28 insertions, 16 deletions
diff --git a/users/stanrc85/layer_rgb.c b/users/stanrc85/layer_rgb.c
index 23eeb3b083..58f17489a1 100644
--- a/users/stanrc85/layer_rgb.c
+++ b/users/stanrc85/layer_rgb.c
@@ -1,26 +1,29 @@
#include "stanrc85.h"
void matrix_init_user(void) {
- rgblight_setrgb(0xFF, 0x00, 0x00);
+ rgblight_setrgb(0xFF, 0x00, 0x00);
};
uint32_t layer_state_set_user(uint32_t state) {
switch (biton32(state)) {
case 0:
- rgblight_setrgb (0xFF, 0x00, 0x00);
- break;
+ rgblight_setrgb (0xFF, 0x00, 0x00);
+ break;
case 1:
- rgblight_setrgb (0x00, 0xFF, 0x00);
- break;
+ rgblight_setrgb (0x00, 0xFF, 0x00);
+ break;
case 2:
- rgblight_setrgb (0x00, 0x00, 0xFF);
- break;
+ rgblight_setrgb (0x00, 0x00, 0xFF);
+ break;
case 3:
- rgblight_setrgb (0xFF, 0xFF, 0xFF);
- break;
+ rgblight_setrgb (0xFF, 0xFF, 0xFF);
+ break;
+ case 4:
+ rgblight_setrgb (0xFF, 0x00, 0xFF);
+ break;
default: // for any other layers, or the default layer
- rgblight_setrgb (0xFF, 0x00, 0x00);
- break;
+ rgblight_setrgb (0xFF, 0x00, 0x00);
+ break;
}
return state;
}
diff --git a/users/stanrc85/stanrc85.h b/users/stanrc85/stanrc85.h
index b3d413fa1d..ceb7167e10 100644
--- a/users/stanrc85/stanrc85.h
+++ b/users/stanrc85/stanrc85.h
@@ -3,10 +3,17 @@
#include "quantum.h"
#include "version.h"
-#define DEFAULT 0 //Custom ANSI
-#define LAYER1 1 //Default ANSI (enable with Fn2+CAPS)
-#define LAYER2 2 //Function keys, arrows, custom shortcuts, volume control
-#define LAYER3 3 //RGB Underglow controls and RESET
+enum my_layers {
+ _NUMPAD = 0, //Macropad numpad
+ _NAVKEY, //Macropad nav keys
+ _MEDIA, //Macropad media controls
+ _RGB, //Macropad RGB controls
+ _FN1PAD, //Macropad reset and make commands
+ _QWERTY = 0, //Qwerty with custom shortcuts and functions
+ _DEFAULT, //Default ANSI for gaming, enable with FN2+RCtl
+ _FN1_60, //Function keys, arrows, custom shortcuts, volume control
+ _FN2_60 //RGB Underglow controls and RESET
+};
//Aliases for longer keycodes
#define KC_CAD LALT(LCTL(KC_DEL))
@@ -14,10 +21,12 @@
#define CA_QUOT LCA(KC_QUOT)
#define CA_SCLN LCA(KC_SCLN)
#define KC_CTLE LCTL_T(KC_ESC)
-#define LT_SPCF LT(2, KC_SPC)
+#define LT_SPCF LT(_FN1_60, KC_SPC)
#define TD_TESC TD(TD_ESC)
#define TD_TWIN TD(TD_WIN)
#define TD_TCTL TD(TD_RCTL)
+#define CA_COPY LCTL(KC_C)
+#define CA_PSTE LCTL(KC_V)
enum cust_keys {
KC_MAKE = SAFE_RANGE,