forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Support for Massdrop's Stack Overflow The Key V2 (qmk#17696)
* Default Factory Settings * Change Keyboard Name in Readme * Fix LED Orders * Change Brightness Step * Enable Lighting Layers * Add RGB Control Mode * Unblink Layer to Clear Stack * Add MacOS RGB Control * Comment Fixes
- Loading branch information
1 parent
ffb5bbd
commit 3c76a7c
Showing
12 changed files
with
507 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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 | ||
|
||
#include "config_common.h" | ||
|
||
/* USB Device descriptor parameter */ | ||
#define VENDOR_ID 0xFEED | ||
#define PRODUCT_ID 0x0000 | ||
#define DEVICE_VER 0x0002 | ||
#define MANUFACTURER Drop | ||
#define PRODUCT The Key V2 | ||
|
||
/* key matrix size */ | ||
#define MATRIX_ROWS 1 | ||
#define MATRIX_COLS 3 | ||
|
||
/* | ||
* Keyboard Matrix Assignments | ||
*/ | ||
#define MATRIX_ROW_PINS { D4 } | ||
#define MATRIX_COL_PINS { D2, D1, D0 } | ||
|
||
#define DIODE_DIRECTION ROW2COL | ||
|
||
#define RGB_DI_PIN B1 | ||
#define RGBLED_NUM 5 | ||
#define RGBLIGHT_LED_MAP {4, 0, 1, 2, 3} | ||
#define RGBLIGHT_ANIMATIONS | ||
#define RGBLIGHT_HUE_STEP 10 | ||
#define RGBLIGHT_SAT_STEP 10 | ||
#define RGBLIGHT_VAL_STEP 15 | ||
#define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
#define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
#define RGBLIGHT_LAYERS /* Enable lighting layers */ | ||
#define RGBLIGHT_LAYER_BLINK /* Enable lighting layer blink */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"keyboard_name": "The Key V2", | ||
"url": "https://drop.com/buy/stack-overflow-the-key-v2-macropad", | ||
"maintainer": "massdrop", | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{ "label": "K00 (D4,D2)", "x": 0, "y": 0 }, | ||
{ "label": "K01 (D4,D1)", "x": 1, "y": 0 }, | ||
{ "label": "K02 (D4,D0)", "x": 2, "y": 0 } | ||
] | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
keyboards/massdrop/thekey_v2/keymaps/default-macos/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
[0] = LAYOUT(KC_LGUI, KC_C, KC_V), | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
[0] = LAYOUT(KC_LCTL, KC_C, KC_V), | ||
|
||
}; |
109 changes: 109 additions & 0 deletions
109
keyboards/massdrop/thekey_v2/keymaps/rgb-control-macos/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
enum custom_keycodes { | ||
LAYER_SWITCH = SAFE_RANGE, | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
/* Default */ | ||
[0] = LAYOUT(LAYER_SWITCH, G(KC_C), G(KC_V)), | ||
|
||
/* RGB Toggle + Mode Change */ | ||
[1] = LAYOUT(LAYER_SWITCH, RGB_TOG, RGB_MOD), | ||
|
||
/* RGB Brightness */ | ||
[2] = LAYOUT(LAYER_SWITCH, RGB_VAD, RGB_VAI), | ||
|
||
/* RGB Hue */ | ||
[3] = LAYOUT(LAYER_SWITCH, RGB_HUD, RGB_HUI), | ||
|
||
/* RGB Saturation */ | ||
[4] = LAYOUT(LAYER_SWITCH, RGB_SAD, RGB_SAI), | ||
|
||
}; | ||
|
||
/* Lighting layers */ | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_0[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 1, HSV_WHITE}, | ||
{1, 4, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_1[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 1, HSV_OFF}, | ||
{1, 1, HSV_WHITE}, | ||
{2, 3, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_2[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 2, HSV_OFF}, | ||
{2, 1, HSV_WHITE}, | ||
{3, 2, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_3[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 3, HSV_OFF}, | ||
{3, 1, HSV_WHITE}, | ||
{4, 1, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_4[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 4, HSV_OFF}, | ||
{4, 1, HSV_WHITE} | ||
); | ||
|
||
const rgblight_segment_t* const PROGMEM rgb_layers[] = RGBLIGHT_LAYERS_LIST( | ||
layer_indicator_0, | ||
layer_indicator_1, | ||
layer_indicator_2, | ||
layer_indicator_3, | ||
layer_indicator_4 | ||
); | ||
|
||
void keyboard_post_init_user(void) { | ||
/* Enable the LED layers */ | ||
rgblight_layers = rgb_layers; | ||
} | ||
|
||
/* Layer handler */ | ||
|
||
uint16_t layer = 0; | ||
|
||
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
switch (keycode) { | ||
case LAYER_SWITCH: | ||
if (record->event.pressed) { | ||
if (layer > 0) { | ||
layer_off(layer); | ||
} | ||
|
||
rgblight_unblink_layer(layer); | ||
layer = (layer + 1) % 5; | ||
rgblight_blink_layer_repeat(layer, 1000, 1); | ||
|
||
if (layer > 0) { | ||
layer_on(layer); | ||
} | ||
} | ||
return false; | ||
default: | ||
return true; | ||
} | ||
} |
109 changes: 109 additions & 0 deletions
109
keyboards/massdrop/thekey_v2/keymaps/rgb-control/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
enum custom_keycodes { | ||
LAYER_SWITCH = SAFE_RANGE, | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
/* Default */ | ||
[0] = LAYOUT(LAYER_SWITCH, C(KC_C), C(KC_V)), | ||
|
||
/* RGB Toggle + Mode Change */ | ||
[1] = LAYOUT(LAYER_SWITCH, RGB_TOG, RGB_MOD), | ||
|
||
/* RGB Brightness */ | ||
[2] = LAYOUT(LAYER_SWITCH, RGB_VAD, RGB_VAI), | ||
|
||
/* RGB Hue */ | ||
[3] = LAYOUT(LAYER_SWITCH, RGB_HUD, RGB_HUI), | ||
|
||
/* RGB Saturation */ | ||
[4] = LAYOUT(LAYER_SWITCH, RGB_SAD, RGB_SAI), | ||
|
||
}; | ||
|
||
/* Lighting layers */ | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_0[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 1, HSV_WHITE}, | ||
{1, 4, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_1[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 1, HSV_OFF}, | ||
{1, 1, HSV_WHITE}, | ||
{2, 3, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_2[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 2, HSV_OFF}, | ||
{2, 1, HSV_WHITE}, | ||
{3, 2, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_3[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 3, HSV_OFF}, | ||
{3, 1, HSV_WHITE}, | ||
{4, 1, HSV_OFF} | ||
); | ||
|
||
const rgblight_segment_t PROGMEM layer_indicator_4[] = RGBLIGHT_LAYER_SEGMENTS( | ||
{0, 4, HSV_OFF}, | ||
{4, 1, HSV_WHITE} | ||
); | ||
|
||
const rgblight_segment_t* const PROGMEM rgb_layers[] = RGBLIGHT_LAYERS_LIST( | ||
layer_indicator_0, | ||
layer_indicator_1, | ||
layer_indicator_2, | ||
layer_indicator_3, | ||
layer_indicator_4 | ||
); | ||
|
||
void keyboard_post_init_user(void) { | ||
/* Enable the LED layers */ | ||
rgblight_layers = rgb_layers; | ||
} | ||
|
||
/* Layer handler */ | ||
|
||
uint16_t layer = 0; | ||
|
||
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
switch (keycode) { | ||
case LAYER_SWITCH: | ||
if (record->event.pressed) { | ||
if (layer > 0) { | ||
layer_off(layer); | ||
} | ||
|
||
rgblight_unblink_layer(layer); | ||
layer = (layer + 1) % 5; | ||
rgblight_blink_layer_repeat(layer, 1000, 1); | ||
|
||
if (layer > 0) { | ||
layer_on(layer); | ||
} | ||
} | ||
return false; | ||
default: | ||
return true; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
keyboards/massdrop/thekey_v2/keymaps/url-copy-paste-macos/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* Copyright 2022 Jason Wihardja | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
enum custom_keycodes { | ||
TK_URL = SAFE_RANGE, | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT(TK_URL, G(KC_C), G(KC_V)), | ||
}; | ||
|
||
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
switch (keycode) { | ||
case TK_URL: | ||
if (record->event.pressed) { | ||
// when keycode TK_URL is pressed | ||
SEND_STRING("https://stackoverflow.com/\n"); | ||
} | ||
break; | ||
default: | ||
break; | ||
} | ||
return true; | ||
} |
Oops, something went wrong.