Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Keyboard] Update Work Louder keyboards #18109

Merged
merged 1 commit into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions keyboards/work_louder/encoder_actions.c

This file was deleted.

21 changes: 0 additions & 21 deletions keyboards/work_louder/encoder_actions.h

This file was deleted.

9 changes: 2 additions & 7 deletions keyboards/work_louder/loop/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "config_common.h"

/* key matrix size */
#define MATRIX_ROWS 2
#define MATRIX_ROWS 1
#define MATRIX_COLS 12

/*
Expand All @@ -34,7 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#define MATRIX_ROW_PINS \
{ F5, NO_PIN }
{ F5 }
#define MATRIX_COL_PINS { B3, B2, B1, D6, D7, B4, B5, B6, C6, C7, F7, F6 }
#define UNUSED_PINS

Expand Down Expand Up @@ -195,8 +195,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#define ENCODERS_PAD_A { D0, D2, D5 }
#define ENCODERS_PAD_B { D1, D3, D4 }

#define ENCODERS 3

#define ENCODERS_CW_KEY { { 0, 1 }, { 2, 1 }, { 4, 1 } }
#define ENCODERS_CCW_KEY { { 1, 1 }, { 3, 1 }, { 5, 1 } }
4 changes: 2 additions & 2 deletions keyboards/work_louder/loop/info.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"keyboard_name": "Loop Pad",
"manufacturer": "Work Louder",
"url": "",
"url": "https://worklouder.cc/",
"maintainer": "Work Louder",
"usb": {
"vid": "0x574C",
"pid": "0x1DF8",
"pid": "0x1DF9",
"device_version": "0.0.1"
},
"layouts": {
Expand Down
38 changes: 18 additions & 20 deletions keyboards/work_louder/loop/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,28 @@
*/
#include QMK_KEYBOARD_H

#define LAYOUT_via( \
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
k00_a, k00_b, k01_a, k01_b, k02_a, k02_b \
) { \
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
{ k00_a, k00_b, k01_a, k01_b, k02_a, k02_b } \
}

// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_via(
KC_MUTE, KC_MPLY, R_M_TOG, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, MO(1),
KC_VOLU, KC_VOLD, KC_MNXT, KC_MPRV, R_M_MOD, R_M_RMOD
[0] = LAYOUT(
KC_MUTE, KC_MPLY, R_M_TOG, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, MO(1)
),
[1] = LAYOUT_via(
QK_BOOT, _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, MO(2), _______,
_______, _______, _______, _______, RGB_MOD, RGB_RMOD
[1] = LAYOUT(
QK_BOOT, _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, MO(2), _______
),
[2] = LAYOUT_via(
QK_BOOT, _______, R_M_TOG, R_M_MOD, R_M_HUI, R_M_HUD, R_M_SAI, R_M_SAD, R_M_VAI, R_M_VAD, _______, _______,
_______, _______, _______, _______, R_M_MOD, R_M_RMOD
[2] = LAYOUT(
QK_BOOT, _______, R_M_TOG, R_M_MOD, R_M_HUI, R_M_HUD, R_M_SAI, R_M_SAD, R_M_VAI, R_M_VAD, _______, _______
),
[3] = LAYOUT_via(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______
[3] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
)
};
// clang-format on

#ifdef ENCODER_MAP_ENABLE
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
[0] = { ENCODER_CCW_CW(KC_VOLU, KC_VOLD), ENCODER_CCW_CW(KC_MPRV, KC_MNXT), ENCODER_CCW_CW(R_M_RMOD, R_M_MOD) },
[1] = { ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______) },
[2] = { ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______) },
[3] = { ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______) },
};
#endif
3 changes: 1 addition & 2 deletions keyboards/work_louder/loop/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
VIA_ENABLE = yes
LTO_ENABLE = yes

SRC += encoder_actions.c
ENCODER_MAP_ENABLE = yes
2 changes: 1 addition & 1 deletion keyboards/work_louder/loop/loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "loop.h"

#if !defined(VIA_ENABLE) && defined(ENCODER_ENABLE)
#if defined(ENCODER_ENABLE)
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
Expand Down
1 change: 0 additions & 1 deletion keyboards/work_louder/loop/loop.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#pragma once

#include "quantum.h"
#include "encoder_actions.h"
#include "rgb_functions.h"

/* This is a shortcut to help you visually see your layout.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/work_louder/micro/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"max_brightness": 255,
"saturation_steps": 8
},
"url": "",
"url": "https://worklouder.cc/",
"usb": {
"device_version": "1.0.0",
"pid": "0xE6E3",
Expand Down
2 changes: 1 addition & 1 deletion keyboards/work_louder/micro/micro.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ led_config_t g_led_config = { {
// clang-format on
#endif

#if defined(ENCODER_ENABLE) && !defined(ENCODERS) && !defined(ENCODER_MAP_ENABLE)
#if defined(ENCODER_ENABLE)
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) {
return false;
Expand Down
15 changes: 2 additions & 13 deletions keyboards/work_louder/nano/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

/* key matrix size */
#define MATRIX_ROWS 1
#define MATRIX_COLS 5
#define MATRIX_COLS 3

/*
* Keyboard Matrix Assignments
Expand All @@ -36,7 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_ROW_PINS \
{ F7 }
#define MATRIX_COL_PINS \
{ B5, B6, C6, NO_PIN, NO_PIN }
{ B5, B6, C6 }

/* COL2ROW, ROW2COL */
#define DIODE_DIRECTION COL2ROW
Expand Down Expand Up @@ -195,14 +195,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
{ D7 }
#define ENCODERS_PAD_B \
{ B4 }

#define ENCODERS 1

#define ENCODERS_CW_KEY \
{ \
{ 3, 0 } \
}
#define ENCODERS_CCW_KEY \
{ \
{ 4, 0 } \
}
4 changes: 2 additions & 2 deletions keyboards/work_louder/nano/info.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"keyboard_name": "Nano Pad",
"manufacturer": "Work Louder",
"url": "",
"url": "https://worklouder.cc/",
"maintainer": "Work Louder",
"usb": {
"vid": "0x574C",
"pid": "0xE6EF",
"pid": "0xE6F0",
"device_version": "0.0.1"
},
"layouts": {
Expand Down
39 changes: 18 additions & 21 deletions keyboards/work_louder/nano/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,28 @@
*/
#include QMK_KEYBOARD_H


#define LAYOUT_via( \
k00, k01, k02, \
k00_a, k00_b \
) { \
{ k00, k01, k02, k00_a, k00_b } \
}


const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Base */
[0] = LAYOUT_via(
KC_PSCR, MACRO00, MO(1),
KC_PGDN, KC_PGUP
[0] = LAYOUT(
KC_PSCR, MACRO00, MO(1)
),
[1] = LAYOUT_via(
QK_BOOT, MACRO01, _______,
_______, _______
[1] = LAYOUT(
QK_BOOT, MACRO01, _______
),
[2] = LAYOUT_via(
_______, _______, _______,
_______, _______
[2] = LAYOUT(
_______, _______, _______
),
[3] = LAYOUT_via(
_______, _______, _______,
_______, _______
[3] = LAYOUT(
_______, _______, _______
)
};


#ifdef ENCODER_MAP_ENABLE
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
[0] = { ENCODER_CCW_CW(KC_PGDN, KC_PGDN) },
[1] = { ENCODER_CCW_CW(_______, _______) },
[2] = { ENCODER_CCW_CW(_______, _______) },
[3] = { ENCODER_CCW_CW(_______, _______) },
};
#endif
3 changes: 1 addition & 2 deletions keyboards/work_louder/nano/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
VIA_ENABLE = yes
LTO_ENABLE = yes

SRC += encoder_actions.c
ENCODER_MAP_ENABLE = yes
2 changes: 1 addition & 1 deletion keyboards/work_louder/nano/nano.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "nano.h"

#if !defined(VIA_ENABLE) && defined(ENCODER_ENABLE)
#if defined(ENCODER_ENABLE)
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (clockwise) {
Expand Down
1 change: 0 additions & 1 deletion keyboards/work_louder/nano/nano.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#pragma once

#include "quantum.h"
#include "encoder_actions.h"
#include "rgb_functions.h"

/* This is a shortcut to help you visually see your layout.
Expand Down
Loading