aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/gh60/gh60.h2
-rw-r--r--keyboards/gh60/keymaps/dbroqua/Makefile112
-rw-r--r--keyboards/gh60/keymaps/dbroqua/config.h187
-rw-r--r--keyboards/gh60/keymaps/dbroqua/keymap.c198
-rw-r--r--keyboards/satan/keymaps/dbroqua/keymap.c152
-rw-r--r--keyboards/satan/keymaps/dbroqua/readme.md (renamed from keyboards/satan/keymaps/dbroqua_hhkb/readme.md)0
-rw-r--r--keyboards/satan/keymaps/dbroqua_hhkb/keymap.c110
7 files changed, 650 insertions, 111 deletions
diff --git a/keyboards/gh60/gh60.h b/keyboards/gh60/gh60.h
index 66bc2790d..99ccf1757 100644
--- a/keyboards/gh60/gh60.h
+++ b/keyboards/gh60/gh60.h
@@ -72,4 +72,4 @@ inline void gh60_wasd_leds_off(void) { DDRF &= ~(1<<7); PORTF &= ~(1<<7); }
72 { K40, K41, K42, KC_NO, KC_NO, K45, KC_NO, KC_NO, KC_NO, K49, K4A, K4B, K4C, K4D } \ 72 { K40, K41, K42, KC_NO, KC_NO, K45, KC_NO, KC_NO, KC_NO, K49, K4A, K4B, K4C, K4D } \
73} 73}
74 74
75#endif 75#endif \ No newline at end of file
diff --git a/keyboards/gh60/keymaps/dbroqua/Makefile b/keyboards/gh60/keymaps/dbroqua/Makefile
new file mode 100644
index 000000000..f1644a8e4
--- /dev/null
+++ b/keyboards/gh60/keymaps/dbroqua/Makefile
@@ -0,0 +1,112 @@
1#----------------------------------------------------------------------------
2# On command line:
3#
4# make all = Make software.
5#
6# make clean = Clean out built project files.
7#
8# make coff = Convert ELF to AVR COFF.
9#
10# make extcoff = Convert ELF to AVR Extended COFF.
11#
12# make program = Download the hex file to the device.
13# Please customize your programmer settings(PROGRAM_CMD)
14#
15# make teensy = Download the hex file to the device, using teensy_loader_cli.
16# (must have teensy_loader_cli installed).
17#
18# make dfu = Download the hex file to the device, using dfu-programmer (must
19# have dfu-programmer installed).
20#
21# make flip = Download the hex file to the device, using Atmel FLIP (must
22# have Atmel FLIP installed).
23#
24# make dfu-ee = Download the eeprom file to the device, using dfu-programmer
25# (must have dfu-programmer installed).
26#
27# make flip-ee = Download the eeprom file to the device, using Atmel FLIP
28# (must have Atmel FLIP installed).
29#
30# make debug = Start either simulavr or avarice as specified for debugging,
31# with avr-gdb or avr-insight as the front end for debugging.
32#
33# make filename.s = Just compile filename.c into the assembler code only.
34#
35# make filename.i = Create a preprocessed source file for use in submitting
36# bug reports to the GCC project.
37#
38# To rebuild project do "make clean" then "make all".
39#----------------------------------------------------------------------------
40
41# MCU name
42#MCU = at90usb1287
43MCU = atmega32u4
44
45# Processor frequency.
46# This will define a symbol, F_CPU, in all source code files equal to the
47# processor frequency in Hz. You can then use this symbol in your source code to
48# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
49# automatically to create a 32-bit value in your source code.
50#
51# This will be an integer division of F_USB below, as it is sourced by
52# F_USB after it has run through any CPU prescalers. Note that this value
53# does not *change* the processor frequency - it should merely be updated to
54# reflect the processor speed set externally so that the code can use accurate
55# software delays.
56F_CPU = 16000000
57
58
59#
60# LUFA specific
61#
62# Target architecture (see library "Board Types" documentation).
63ARCH = AVR8
64
65# Input clock frequency.
66# This will define a symbol, F_USB, in all source code files equal to the
67# input clock frequency (before any prescaling is performed) in Hz. This value may
68# differ from F_CPU if prescaling is used on the latter, and is required as the
69# raw input clock is fed directly to the PLL sections of the AVR for high speed
70# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
71# at the end, this will be done automatically to create a 32-bit value in your
72# source code.
73#
74# If no clock division is performed on the input clock inside the AVR (via the
75# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
76F_USB = $(F_CPU)
77
78# Interrupt driven control endpoint task(+60)
79OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
80
81
82# Boot Section Size in *bytes*
83# Teensy halfKay 512
84# Teensy++ halfKay 1024
85# Atmel DFU loader 4096
86# LUFA bootloader 4096
87# USBaspLoader 2048
88OPT_DEFS += -DBOOTLOADER_SIZE=4096
89
90
91# Build Options
92# comment out to disable the options.
93#
94BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000)
95MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
96EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
97# CONSOLE_ENABLE ?= yes # Console for debug(+400)
98# COMMAND_ENABLE ?= yes # Commands for debug and configuration
99KEYBOARD_LOCK_ENABLE ?= yes # Allow locking of keyboard via magic key
100# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
101SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend
102NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
103# BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality
104# MIDI_ENABLE ?= YES # MIDI controls
105# UNICODE_ENABLE ?= YES # Unicode
106# BLUETOOTH_ENABLE ?= yes # Enable Bluetooth with the Adafruit EZ-Key HID
107RGBLIGHT_ENABLE ?= yes # Enable RGB Underglow
108
109ifndef QUANTUM_DIR
110 include ../../../../Makefile
111endif
112
diff --git a/keyboards/gh60/keymaps/dbroqua/config.h b/keyboards/gh60/keymaps/dbroqua/config.h
new file mode 100644
index 000000000..75ccec097
--- /dev/null
+++ b/keyboards/gh60/keymaps/dbroqua/config.h
@@ -0,0 +1,187 @@
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_H
19#define CONFIG_H
20
21#include "config_common.h"
22
23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xFEED
25#define PRODUCT_ID 0x6060
26#define DEVICE_VER 0x0001
27#define MANUFACTURER geekhack
28#define PRODUCT GH60
29#define DESCRIPTION t.m.k. keyboard firmware for GH60
30
31/* key matrix size */
32#define MATRIX_ROWS 5
33#define MATRIX_COLS 14
34
35/*
36 * Keyboard Matrix Assignments
37 *
38 * Change this to how you wired your keyboard
39 * COLS: AVR pins used for columns, left to right
40 * ROWS: AVR pins used for rows, top to bottom
41 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
42 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
43 *
44*/
45#define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 }
46#define MATRIX_COL_PINS { F0, F1, E6, C7, C6, B6, D4, B1, B7, B5, B4, D7, D6, B3 }
47#define UNUSED_PINS
48
49/* COL2ROW or ROW2COL */
50#define DIODE_DIRECTION COL2ROW
51
52/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
53#define DEBOUNCING_DELAY 5
54
55/* define if matrix has ghost (lacks anti-ghosting diodes) */
56//#define MATRIX_HAS_GHOST
57
58/* number of backlight levels */
59#define BACKLIGHT_LEVELS 3
60
61/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
62#define LOCKING_SUPPORT_ENABLE
63/* Locking resynchronize hack */
64#define LOCKING_RESYNC_ENABLE
65
66/*
67 * Force NKRO
68 *
69 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
70 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
71 * makefile for this to work.)
72 *
73 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
74 * until the next keyboard reset.
75 *
76 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
77 * fully operational during normal computer usage.
78 *
79 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
80 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
81 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
82 * power-up.
83 *
84 */
85//#define FORCE_NKRO
86
87/*
88 * Magic Key Options
89 *
90 * Magic keys are hotkey commands that allow control over firmware functions of
91 * the keyboard. They are best used in combination with the HID Listen program,
92 * found here: https://www.pjrc.com/teensy/hid_listen.html
93 *
94 * The options below allow the magic key functionality to be changed. This is
95 * useful if your keyboard/keypad is missing keys and you want magic key support.
96 *
97 */
98
99/* key combination for magic key command */
100#define IS_COMMAND() ( \
101 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
102)
103
104/* control how magic key switches layers */
105//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
106//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
107//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
108
109/* override magic key keymap */
110//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
111//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
112//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
113//#define MAGIC_KEY_HELP1 H
114//#define MAGIC_KEY_HELP2 SLASH
115//#define MAGIC_KEY_DEBUG D
116//#define MAGIC_KEY_DEBUG_MATRIX X
117//#define MAGIC_KEY_DEBUG_KBD K
118//#define MAGIC_KEY_DEBUG_MOUSE M
119//#define MAGIC_KEY_VERSION V
120//#define MAGIC_KEY_STATUS S
121//#define MAGIC_KEY_CONSOLE C
122//#define MAGIC_KEY_LAYER0_ALT1 ESC
123//#define MAGIC_KEY_LAYER0_ALT2 GRAVE
124//#define MAGIC_KEY_LAYER0 0
125//#define MAGIC_KEY_LAYER1 1
126//#define MAGIC_KEY_LAYER2 2
127//#define MAGIC_KEY_LAYER3 3
128//#define MAGIC_KEY_LAYER4 4
129//#define MAGIC_KEY_LAYER5 5
130//#define MAGIC_KEY_LAYER6 6
131//#define MAGIC_KEY_LAYER7 7
132//#define MAGIC_KEY_LAYER8 8
133//#define MAGIC_KEY_LAYER9 9
134//#define MAGIC_KEY_BOOTLOADER PAUSE
135//#define MAGIC_KEY_LOCK CAPS
136//#define MAGIC_KEY_EEPROM E
137//#define MAGIC_KEY_NKRO N
138//#define MAGIC_KEY_SLEEP_LED Z
139
140/*
141 * Feature disable options
142 * These options are also useful to firmware size reduction.
143 */
144
145/* disable debug print */
146//#define NO_DEBUG
147
148/* disable print */
149//#define NO_PRINT
150
151/* disable action features */
152//#define NO_ACTION_LAYER
153//#define NO_ACTION_TAPPING
154//#define NO_ACTION_ONESHOT
155//#define NO_ACTION_MACRO
156//#define NO_ACTION_FUNCTION
157
158/*
159 * RGB Underglow
160 * These settings are for the F4 by default:
161 *
162 *
163 * #define ws2812_PORTREG PORTF
164 * #define ws2812_DDRREG DDRF
165 * #define ws2812_pin PF4
166 * #define RGBLED_NUM 14 // Number of LEDs
167 * #define RGBLIGHT_HUE_STEP 10
168 * #define RGBLIGHT_SAT_STEP 17
169 * #define RGBLIGHT_VAL_STEP 17
170 *
171 * The firmware supports 5 different light effects, and the color (hue, saturation, brightness) can be customized in most effects.
172 * To control the underglow, you need to modify your keymap file to assign those functions to some keys/key combinations.
173 * For details, please check this keymap. keyboard/planck/keymaps/yang/keymap.c
174*/
175
176/* Deprecated code below
177#define ws2812_PORTREG PORTF
178#define ws2812_DDRREG DDRF
179#define ws2812_pin PF4
180*/
181#define RGB_DI_PIN F4
182#define RGBLIGHT_ANIMATIONS
183#define RGBLED_NUM 11 // Number of LEDs
184#define RGBLIGHT_HUE_STEP 8
185#define RGBLIGHT_SAT_STEP 8
186#define RGBLIGHT_VAL_STEP 8
187#endif
diff --git a/keyboards/gh60/keymaps/dbroqua/keymap.c b/keyboards/gh60/keymaps/dbroqua/keymap.c
new file mode 100644
index 000000000..be88edc09
--- /dev/null
+++ b/keyboards/gh60/keymaps/dbroqua/keymap.c
@@ -0,0 +1,198 @@
1#include "gh60.h"
2#include "action_layer.h"
3#include "rgblight.h"
4
5#define _DEFAULT 0
6#define _FN 1
7#define _WASD 2
8#define _SFX 3
9
10//bool esc_led_on;
11
12enum planck_keycodes {
13 DEFAULT = SAFE_RANGE
14};
15
16// Fillers to make layering more clear
17#define ______ KC_TRNS
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20/* Qwerty gui/alt/space/alt/gui
21 * ,-----------------------------------------------------------------------------------------.
22 * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
23 * |-----------------------------------------------------------------------------------------+
24 * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | Bksp |
25 * |-----------------------------------------------------------------------------------------+
26 * | Ctrl | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
27 * |-----------------------------------------------------------------------------------------+
28 * | Shift | Z | X | C | V | B | N | M | , | . | / | RShift | FN |
29 * |-----------------------------------------------------------------------------------------+
30 * |LGUI | LAlt | Space | RAlt |RGUI |
31 * `-----------------------------------------------------------------'
32 */
33 [_DEFAULT] = KEYMAP_HHKB( /* Basic QWERTY */
34 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
35 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, \
36 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
37 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FN), \
38 ______, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, ______, ______ \
39 ),
40
41/* FN Layer
42 * ,-----------------------------------------------------------------------------------------.
43 * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | Ins | Del |
44 * |-----------------------------------------------------------------------------------------+
45 * | CAPS | | | | | | | | Psc | Slck| Paus| Up | | |
46 * |-----------------------------------------------------------------------------------------+
47 * | | Vol-| Vol+| Mute| | | * | / | Home| PgUp| Left|Right| |
48 * |-----------------------------------------------------------------------------------------+
49 * | | Prev| Play| Next| | | + | - | End |PgDn| Down| | |
50 * |-----------------------------------------------------------------------------------------+
51 * | | | | Stop | |
52 * `-----------------------------------------------------------------'
53 */
54 [_FN] = KEYMAP_HHKB( /* Layer 1 */
55 TG(_SFX),KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, \
56 KC_CAPS, ______, ______, ______, ______, ______, ______, ______, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, ______, ______, \
57 ______, KC_VOLD, KC_VOLU, KC_MUTE, ______, ______, KC_PAST, KC_PSLS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT,______, \
58 ______, KC_MPRV, KC_MPLY, KC_MNXT, ______, ______, KC_PPLS, KC_PMNS, KC_END, KC_PGDN, KC_DOWN, ______, ______, \
59 ______, ______, ______, TG(_WASD), KC_MSTP, ______, ______, ______ \
60 ),
61
62/* WASD Layer
63 * ,-----------------------------------------------------------------------------------------.
64 * | | | | | | | | | | | | | | | |
65 * |-----------------------------------------------------------------------------------------+
66 * | | | Up | | | | | | | | | | | |
67 * |-----------------------------------------------------------------------------------------+
68 * | | Left| Down|Right| | | | | | | | | |
69 * |-----------------------------------------------------------------------------------------+
70 * | | | | | | | | | | | | | |
71 * |-----------------------------------------------------------------------------------------+
72 * | | | | | |
73 * `-----------------------------------------------------------------'
74 */
75 [_WASD] = KEYMAP_HHKB( /* Layer 2 */
76 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
77 ______, ______, KC_UP, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
78 ______, KC_LEFT, KC_DOWN,KC_RGHT,______, ______, ______, ______, ______, ______, ______, ______, ______, \
79 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______,______, \
80 ______, ______, ______, ______, ______, ______, ______, ______ \
81 ),
82
83/* SFX Layer
84 * ,-----------------------------------------------------------------------------------------.
85 * | | | | | | | | | | | | | | | |
86 * |-----------------------------------------------------------------------------------------+
87 * | | BL- | BL+ | BL | | | | | | | | | | |
88 * |-----------------------------------------------------------------------------------------+
89 * | | RGBT| RGBM| | | | | | | | | | |
90 * |-----------------------------------------------------------------------------------------+
91 * | | Hue+| Hue-| Sat+| Sat-| Val+| Val-| | | | | | |
92 * |-----------------------------------------------------------------------------------------+
93 * | | | | | |
94 * `-----------------------------------------------------------------'
95 */
96 [_SFX] = KEYMAP_HHKB(
97 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
98 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
99 ______, F(0), F(1), ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
100 ______, F(2), F(3), F(4), F(5), F(6), F(7), ______, ______, ______, ______, ______, ______, \
101 ______, ______, ______, ______, ______, ______, ______, ______ \
102 )
103};
104
105const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
106{
107 // MACRODOWN only works in this function
108 return MACRO_NONE;
109};
110
111enum function_id {
112 RGBLED_TOGGLE,
113 RGBLED_STEP_MODE,
114 RGBLED_INCREASE_HUE,
115 RGBLED_DECREASE_HUE,
116 RGBLED_INCREASE_SAT,
117 RGBLED_DECREASE_SAT,
118 RGBLED_INCREASE_VAL,
119 RGBLED_DECREASE_VAL
120};
121
122const uint16_t PROGMEM fn_actions[] = {
123 [0] = ACTION_FUNCTION(RGBLED_TOGGLE),
124 [1] = ACTION_FUNCTION(RGBLED_STEP_MODE),
125 [2] = ACTION_FUNCTION(RGBLED_INCREASE_HUE),
126 [3] = ACTION_FUNCTION(RGBLED_DECREASE_HUE),
127 [4] = ACTION_FUNCTION(RGBLED_INCREASE_SAT),
128 [5] = ACTION_FUNCTION(RGBLED_DECREASE_SAT),
129 [6] = ACTION_FUNCTION(RGBLED_INCREASE_VAL),
130 [7] = ACTION_FUNCTION(RGBLED_DECREASE_VAL)
131};
132
133void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
134 switch (id) {
135 case RGBLED_TOGGLE:
136 if (record->event.pressed) {
137 rgblight_toggle();
138 }
139 break;
140 case RGBLED_INCREASE_HUE:
141 if (record->event.pressed) {
142 rgblight_increase_hue();
143 }
144 break;
145 case RGBLED_DECREASE_HUE:
146 if (record->event.pressed) {
147 rgblight_decrease_hue();
148 }
149 break;
150 case RGBLED_INCREASE_SAT:
151 if (record->event.pressed) {
152 rgblight_increase_sat();
153 }
154 break;
155 case RGBLED_DECREASE_SAT:
156 if (record->event.pressed) {
157 rgblight_decrease_sat();
158 }
159 break;
160 case RGBLED_INCREASE_VAL:
161 if (record->event.pressed) {
162 rgblight_increase_val();
163 }
164 break;
165 case RGBLED_DECREASE_VAL:
166 if (record->event.pressed) {
167 rgblight_decrease_val();
168 }
169 break;
170 case RGBLED_STEP_MODE:
171 if (record->event.pressed) {
172 rgblight_step();
173 }
174 break;
175 }
176}
177
178void matrix_scan_user(void) {
179 uint32_t layer = layer_state;
180
181 if (layer & (1<<1)) {
182 gh60_fn_led_on();
183 } else {
184 gh60_fn_led_off();
185 }
186
187 if (layer & (1<<2)) {
188 gh60_wasd_leds_on();
189 } else {
190 gh60_wasd_leds_off();
191 }
192
193 if (layer & (1<<3)) {
194 gh60_esc_led_on();
195 } else {
196 gh60_esc_led_off();
197 }
198}; \ No newline at end of file
diff --git a/keyboards/satan/keymaps/dbroqua/keymap.c b/keyboards/satan/keymaps/dbroqua/keymap.c
new file mode 100644
index 000000000..5b921e021
--- /dev/null
+++ b/keyboards/satan/keymaps/dbroqua/keymap.c
@@ -0,0 +1,152 @@
1#include "satan.h"
2#include "action_layer.h"
3#include "rgblight.h"
4
5#define _DEFAULT 0
6#define _FN 1
7#define _SFX 2
8
9enum planck_keycodes {
10 DEFAULT = SAFE_RANGE
11};
12
13// Fillers to make layering more clear
14#define ______ KC_TRNS
15
16const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
17/* Qwerty gui/alt/space/alt/gui
18 * ,-----------------------------------------------------------------------------------------.
19 * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
20 * |-----------------------------------------------------------------------------------------+
21 * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | Bksp |
22 * |-----------------------------------------------------------------------------------------+
23 * | Ctrl | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
24 * |-----------------------------------------------------------------------------------------+
25 * | Shift | Z | X | C | V | B | N | M | , | . | / | RShift | FN |
26 * |-----------------------------------------------------------------------------------------+
27 * |LGUI | LAlt | Space | RAlt |RGUI |
28 * `-----------------------------------------------------------------'
29 */
30 [_DEFAULT] = KEYMAP_HHKB( /* Basic QWERTY */
31 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
32 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC,KC_BSPC, \
33 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
34 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FN), \
35 ______, KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RGUI, ______, ______ \
36 ),
37
38/* FN Layer
39 * ,-----------------------------------------------------------------------------------------.
40 * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | Ins | Del |
41 * |-----------------------------------------------------------------------------------------+
42 * | CAPS | BL- | BL+ | BL | | | | | Psc | Slck| Paus| Up | | |
43 * |-----------------------------------------------------------------------------------------+
44 * | | Vol-| Vol+| Mute| | | * | / | Home| PgUp| Left|Right| |
45 * |-----------------------------------------------------------------------------------------+
46 * | | Prev| Play| Next| | | + | - | End |PgDn| Down| | |
47 * |-----------------------------------------------------------------------------------------+
48 * | | | | Stop | |
49 * `-----------------------------------------------------------------'
50 */
51 [_FN] = KEYMAP_HHKB( /* Layer 1 */
52 TG(_SFX), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, \
53 KC_CAPS, ______, ______, ______, ______, ______, ______, ______, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, ______, ______, \
54 ______, KC_VOLD,KC_VOLU,KC_MUTE,______, ______, KC_PAST,KC_PSLS,KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, ______, \
55 ______, KC_MPRV,KC_MPLY,KC_MNXT,______, ______, KC_PPLS,KC_PMNS,KC_END, KC_PGDN, KC_DOWN, ______, ______, \
56 ______, ______, ______, ______, KC_MSTP, ______, ______, ______ \
57 ),
58
59/* SFX Layer
60 * ,-----------------------------------------------------------------------------------------.
61 * | | | | | | | | | | | | | | | |
62 * |-----------------------------------------------------------------------------------------+
63 * | | BL- | BL+ | BL | | | | | | | | | | |
64 * |-----------------------------------------------------------------------------------------+
65 * | | RGBT| RGBM| | | | | | | | | | |
66 * |-----------------------------------------------------------------------------------------+
67 * | | Hue+| Hue-| Sat+| Sat-| Val+| Val-| | | | | | |
68 * |-----------------------------------------------------------------------------------------+
69 * | | | | | |
70 * `-----------------------------------------------------------------'
71 */
72 [_SFX] = KEYMAP_HHKB(
73 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
74 ______, BL_DEC, BL_INC, BL_TOGG,______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
75 ______, F(0), F(1), ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
76 ______, F(2), F(3), F(4), F(5), F(6), F(7), ______, ______, ______, ______, ______, ______, \
77 ______, ______, ______, ______, ______, ______, ______, ______ \
78 )
79};
80
81const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
82{
83 // MACRODOWN only works in this function
84 return MACRO_NONE;
85};
86
87enum function_id {
88 RGBLED_TOGGLE,
89 RGBLED_STEP_MODE,
90 RGBLED_INCREASE_HUE,
91 RGBLED_DECREASE_HUE,
92 RGBLED_INCREASE_SAT,
93 RGBLED_DECREASE_SAT,
94 RGBLED_INCREASE_VAL,
95 RGBLED_DECREASE_VAL
96};
97
98const uint16_t PROGMEM fn_actions[] = {
99 [0] = ACTION_FUNCTION(RGBLED_TOGGLE),
100 [1] = ACTION_FUNCTION(RGBLED_STEP_MODE),
101 [2] = ACTION_FUNCTION(RGBLED_INCREASE_HUE),
102 [3] = ACTION_FUNCTION(RGBLED_DECREASE_HUE),
103 [4] = ACTION_FUNCTION(RGBLED_INCREASE_SAT),
104 [5] = ACTION_FUNCTION(RGBLED_DECREASE_SAT),
105 [6] = ACTION_FUNCTION(RGBLED_INCREASE_VAL),
106 [7] = ACTION_FUNCTION(RGBLED_DECREASE_VAL)
107};
108
109void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
110 switch (id) {
111 case RGBLED_TOGGLE:
112 if (record->event.pressed) {
113 rgblight_toggle();
114 }
115 break;
116 case RGBLED_INCREASE_HUE:
117 if (record->event.pressed) {
118 rgblight_increase_hue();
119 }
120 break;
121 case RGBLED_DECREASE_HUE:
122 if (record->event.pressed) {
123 rgblight_decrease_hue();
124 }
125 break;
126 case RGBLED_INCREASE_SAT:
127 if (record->event.pressed) {
128 rgblight_increase_sat();
129 }
130 break;
131 case RGBLED_DECREASE_SAT:
132 if (record->event.pressed) {
133 rgblight_decrease_sat();
134 }
135 break;
136 case RGBLED_INCREASE_VAL:
137 if (record->event.pressed) {
138 rgblight_increase_val();
139 }
140 break;
141 case RGBLED_DECREASE_VAL:
142 if (record->event.pressed) {
143 rgblight_decrease_val();
144 }
145 break;
146 case RGBLED_STEP_MODE:
147 if (record->event.pressed) {
148 rgblight_step();
149 }
150 break;
151 }
152} \ No newline at end of file
diff --git a/keyboards/satan/keymaps/dbroqua_hhkb/readme.md b/keyboards/satan/keymaps/dbroqua/readme.md
index 39e71beed..39e71beed 100644
--- a/keyboards/satan/keymaps/dbroqua_hhkb/readme.md
+++ b/keyboards/satan/keymaps/dbroqua/readme.md
diff --git a/keyboards/satan/keymaps/dbroqua_hhkb/keymap.c b/keyboards/satan/keymaps/dbroqua_hhkb/keymap.c
deleted file mode 100644
index 98a298e76..000000000
--- a/keyboards/satan/keymaps/dbroqua_hhkb/keymap.c
+++ /dev/null
@@ -1,110 +0,0 @@
1// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
2// this is the style you want to emulate.
3
4#include "satan.h"
5
6#define _DEFAULT 0
7#define _ALTDISP 1
8#define _FN 2
9
10enum planck_keycodes {
11 DEFAULT = SAFE_RANGE,
12 ALTDISP
13};
14
15// Fillers to make layering more clear
16#define ______ KC_TRNS
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19/* Qwerty alt/gui/space/gui/alt
20 * ,-----------------------------------------------------------------------------------------.
21 * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
22 * |-----------------------------------------------------------------------------------------+
23 * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | Bksp |
24 * |-----------------------------------------------------------------------------------------+
25 * | Ctrl | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
26 * |-----------------------------------------------------------------------------------------+
27 * | Shift | Z | X | C | V | B | N | M | , | . | / | RShift | FN |
28 * |-----------------------------------------------------------------------------------------+
29 * | LAlt| LGUI | Space | RGUI | RAlt |
30 * `-----------------------------------------------------------------'
31 */
32 [_DEFAULT] = KEYMAP_HHKB( /* Basic QWERTY */
33 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
34 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, \
35 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
36 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FN), \
37 ______, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, ______, ______ \
38 ),
39
40/* Qwerty gui/alt/space/alt/gui
41 * ,-----------------------------------------------------------------------------------------.
42 * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
43 * |-----------------------------------------------------------------------------------------+
44 * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | Bksp |
45 * |-----------------------------------------------------------------------------------------+
46 * | Ctrl | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
47 * |-----------------------------------------------------------------------------------------+
48 * | Shift | Z | X | C | V | B | N | M | , | . | / | RShift | FN |
49 * |-----------------------------------------------------------------------------------------+
50 * |LGUI | LAlt | Space | RAlt |RGUI |
51 * `-----------------------------------------------------------------'
52 */
53 [_ALTDISP] = KEYMAP_HHKB( /* Basic QWERTY */
54 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
55 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, \
56 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
57 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FN), \
58 ______, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, ______, ______ \
59 ),
60
61/* FN Layer
62 * ,-----------------------------------------------------------------------------------------.
63 * | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | Ins | Del |
64 * |-----------------------------------------------------------------------------------------+
65 * | CAPS | BL- | BL+ | BL | | | | | Psc | Slck| Paus| Up | | |
66 * |-----------------------------------------------------------------------------------------+
67 * | | Vol-| Vol+| Mute| | | * | / | Home| PgUp| Left|Right| |
68 * |-----------------------------------------------------------------------------------------+
69 * | | Prev| Play| Next| | | + | - | End |PgDn| Down| | |
70 * |-----------------------------------------------------------------------------------------+
71 * | | | | Stop | |
72 * `-----------------------------------------------------------------'
73 */
74 [_FN] = KEYMAP_HHKB( /* Layer 1 */
75 ______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, \
76 KC_CAPS, BL_DEC, BL_INC, BL_TOGG, ______, ______, ______, ______, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, ______, ______, \
77 ______, KC_VOLD, KC_VOLU, KC_MUTE, ______, ______, KC_PAST, KC_PSLS,KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, ______, \
78 ______, KC_MPRV, KC_MPLY, KC_MNXT,______,______,KC_PPLS,KC_PMNS,KC_END, KC_PGDN, KC_DOWN, ______,______, \
79 ______, DEFAULT, ALTDISP, ______, KC_MSTP, ______, ______, ______ \
80 )
81};
82
83const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
84{
85 // MACRODOWN only works in this function
86 return MACRO_NONE;
87};
88
89void persistant_default_layer_set(uint16_t default_layer) {
90 eeconfig_update_default_layer(default_layer);
91 default_layer_set(default_layer);
92}
93
94bool process_record_user(uint16_t keycode, keyrecord_t *record) {
95 switch (keycode) {
96 case DEFAULT:
97 if (record->event.pressed) {
98 persistant_default_layer_set(1UL<<_DEFAULT);
99 }
100 return false;
101 break;
102 case ALTDISP:
103 if (record->event.pressed) {
104 persistant_default_layer_set(1UL<<_ALTDISP);
105 }
106 return false;
107 break;
108 }
109 return true;
110} \ No newline at end of file