Skip to content

Commit

Permalink
Add encoder map to Quefrency VIA keymap (qmk#18380)
Browse files Browse the repository at this point in the history
* Add encoder map to Quefrency VIA keymap

* Explicitly define which RGB animations are enabled

* Set different PID to prep for different VIA .json usage

* Add ifdefs to handle if ENCODER_ENABLE is set to NO
  • Loading branch information
nooges committed Sep 19, 2022
1 parent 51620c1 commit 41fdf32
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 9 deletions.
9 changes: 9 additions & 0 deletions keyboards/keebio/quefrency/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,12 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
)
};

#ifdef ENCODER_MAP_ENABLE
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
[0] = { ENCODER_CCW_CW(KC_PGUP, KC_PGDN), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
[1] = { ENCODER_CCW_CW(RGB_RMOD, RGB_MOD), ENCODER_CCW_CW(KC_MPRV, KC_MNXT) },
[2] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI), ENCODER_CCW_CW(RGB_SAD, RGB_SAI) },
[3] = { ENCODER_CCW_CW(RGB_SPD, RGB_SPI), ENCODER_CCW_CW(RGB_VAD, RGB_VAI) },
};
#endif
1 change: 1 addition & 0 deletions keyboards/keebio/quefrency/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
VIA_ENABLE = yes
LTO_ENABLE = yes
ENCODER_MAP_ENABLE = yes
11 changes: 10 additions & 1 deletion keyboards/keebio/quefrency/rev2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,19 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.

/* ws2812 RGB LED */
#define RGB_DI_PIN E6
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 16 // Number of LEDs
#define RGBLED_SPLIT { 8, 8 }
#define RGBLIGHT_LED_MAP { 1, 2, 3, 12, 13, 14, 15, 0, 7, 6, 5, 4, 11, 10, 9, 8 }
#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_SNAKE
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_CHRISTMAS
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_ALTERNATING
#define RGBLIGHT_EFFECT_TWINKLE

// Set 65% column (option 3) and Macro (option 4) on by default
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
Expand Down
2 changes: 2 additions & 0 deletions keyboards/keebio/quefrency/rev2/rev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ void eeconfig_init_kb(void) {
eeconfig_init_user();
}

#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
Expand All @@ -48,3 +49,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
}
return false;
}
#endif
11 changes: 10 additions & 1 deletion keyboards/keebio/quefrency/rev3/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,19 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.

/* ws2812 RGB LED */
#define RGB_DI_PIN E6
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 16 // Number of LEDs
#define RGBLED_SPLIT { 8, 8 }
#define RGBLIGHT_LED_MAP { 1, 2, 3, 12, 13, 14, 15, 0, 7, 6, 5, 4, 11, 10, 9, 8 }
#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_SNAKE
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_CHRISTMAS
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_ALTERNATING
#define RGBLIGHT_EFFECT_TWINKLE

// Set 65% column (option 3) and Macro (option 4) on by default
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00DE
Expand Down
4 changes: 2 additions & 2 deletions keyboards/keebio/quefrency/rev3/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"maintainer": "nooges",
"usb": {
"vid": "0xCB10",
"pid": "0x3257",
"device_version": "3.0.0"
"pid": "0x3357",
"device_version": "3.1.0"
},
"layout_aliases": {
"LAYOUT": "LAYOUT_60"
Expand Down
2 changes: 2 additions & 0 deletions keyboards/keebio/quefrency/rev3/rev3.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ void eeconfig_init_kb(void) {
eeconfig_init_user();
}

#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
Expand All @@ -64,3 +65,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
}
return false;
}
#endif
11 changes: 10 additions & 1 deletion keyboards/keebio/quefrency/rev4/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,17 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.

/* ws2812 RGB LED */
#define RGB_DI_PIN E6
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 16 // Number of LEDs
#define RGBLED_SPLIT { 8, 8 }
#define RGBLIGHT_LED_MAP { 1, 2, 3, 12, 13, 14, 15, 0, 7, 6, 5, 4, 11, 10, 9, 8 }
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_SNAKE
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_CHRISTMAS
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_ALTERNATING
#define RGBLIGHT_EFFECT_TWINKLE
4 changes: 2 additions & 2 deletions keyboards/keebio/quefrency/rev4/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"maintainer": "nooges",
"usb": {
"vid": "0xCB10",
"pid": "0x4257",
"device_version": "4.0.0"
"pid": "0x4357",
"device_version": "4.1.0"
},
"layout_aliases": {
"LAYOUT": "LAYOUT_60"
Expand Down
2 changes: 2 additions & 0 deletions keyboards/keebio/quefrency/rev4/rev4.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.

#include "quefrency.h"

#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
Expand All @@ -33,3 +34,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
}
return false;
}
#endif
4 changes: 2 additions & 2 deletions keyboards/keebio/quefrency/rev5/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"maintainer": "nooges",
"usb": {
"vid": "0xCB10",
"pid": "0x5257",
"device_version": "5.0.0"
"pid": "0x5357",
"device_version": "5.1.0"
},
"layout_aliases": {
"LAYOUT": "LAYOUT_60"
Expand Down
2 changes: 2 additions & 0 deletions keyboards/keebio/quefrency/rev5/rev5.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.

#include "quefrency.h"

#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
Expand All @@ -33,3 +34,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
}
return false;
}
#endif

0 comments on commit 41fdf32

Please sign in to comment.