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

Added MacOS Support for BigKnob #19693

Merged
merged 3 commits into from
Feb 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
63 changes: 63 additions & 0 deletions keyboards/leafcutterlabs/bigknob/keymaps/macos/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/* Copyright 2021 Craig Gardner
*
* 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/>.
*/

/*
Modifications 1/2023 by Kassandra Karan for MacOS support
* Changed Volume up and down to mac scan codes
* MacOS doesnt support Stop, so changed default to spotlight search
*/

#include QMK_KEYBOARD_H

#define _MAIN 0
SpaceyKasey marked this conversation as resolved.
Show resolved Hide resolved

enum custom_keycodes{
APPLE_SEARCH
SpaceyKasey marked this conversation as resolved.
Show resolved Hide resolved
};

bool encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (clockwise) {
tap_code(KC_KB_VOLUME_UP); // MacOS Volume Up
} else {
tap_code(KC_KB_VOLUME_DOWN); // MacOS Volume Down
}
}
return true;
waffle87 marked this conversation as resolved.
Show resolved Hide resolved
};

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case APPLE_SEARCH:
if (record->event.pressed) {
// when keycode APPLE_SEARCH is pressed
register_code(KC_LCMD); // press the Command key
register_code(KC_SPACE); // press the Space key
} else {
// when keycode APPLE_SEARCH is released
unregister_code(KC_LCMD); // Release the Command key
unregister_code(KC_SPACE); // release the Space key
SpaceyKasey marked this conversation as resolved.
Show resolved Hide resolved
}
break;
}
return true;
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //button closest to USB is first
[_MAIN] = LAYOUT(
KC_MUTE, KC_MEDIA_PREV_TRACK, KC_MEDIA_PLAY_PAUSE, APPLE_SEARCH, KC_MNXT
)
};
6 changes: 6 additions & 0 deletions keyboards/leafcutterlabs/bigknob/keymaps/macos/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# MacOS BigKnob Layout

This is a modification to the BigKnob to support MacOS. The QMK configurator does not
support rotary encoders, so this changes the key codes to the Apple volume control
codes. This also changes the 3rd key from stop, which MacOS does not support, to
spotlight search.