~ruther/qmk_firmware

ref: 59787a2e515b50eb84b5fb29ae20bfc61b49851f qmk_firmware/users/zer09/zer09.h -rw-r--r-- 411 bytes
59787a2e — Ryan input_club/infinity60: remove custom 3731 code, convert to LED Matrix (#22117) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef USERSPACE
#define USERSPACE

#include QMK_KEYBOARD_H

enum custom_keycodes {
  CK_SAFE = SAFE_RANGE,
  RGUP,
  RGDWN,
  YREG,
  NEW_SAFE_RANGE
};

#define KC_RGUP RGUP
#define KC_RGDWN RGDWN
#define KC_YREG YREG

#define _BL 0 // The base layer
#define _UL 1 // The up layer
#define _DL 2 // The down layer
#define _VL 3 // The shifted up layer
#define _AL 4 // The assorted layer
#define _GM 5

#endif