mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-14 16:05:11 +00:00
Update default Planck layout to be more in line with standard conventions
This commit is contained in:
parent
5a127293e7
commit
1df10ae3bf
2 changed files with 16 additions and 11 deletions
|
@ -1,7 +1,4 @@
|
||||||
#ifndef CONFIG_USER_H
|
#pragma once
|
||||||
#define CONFIG_USER_H
|
|
||||||
|
|
||||||
#include "config_common.h"
|
|
||||||
|
|
||||||
#ifdef AUDIO_ENABLE
|
#ifdef AUDIO_ENABLE
|
||||||
#define STARTUP_SONG SONG(PLANCK_SOUND)
|
#define STARTUP_SONG SONG(PLANCK_SOUND)
|
||||||
|
@ -40,4 +37,3 @@
|
||||||
// Most tactile encoders have detents every 4 stages
|
// Most tactile encoders have detents every 4 stages
|
||||||
#define ENCODER_RESOLUTION 4
|
#define ENCODER_RESOLUTION 4
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
|
@ -14,8 +14,7 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "planck.h"
|
#include QMK_KEYBOARD_H
|
||||||
#include "action_layer.h"
|
|
||||||
#include "muse.h"
|
#include "muse.h"
|
||||||
|
|
||||||
extern keymap_config_t keymap_config;
|
extern keymap_config_t keymap_config;
|
||||||
|
@ -276,11 +275,21 @@ void encoder_update(bool clockwise) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (clockwise) {
|
if (clockwise) {
|
||||||
|
#ifdef MOUSEKEY_ENABLE
|
||||||
|
register_code(KC_MS_WH_DOWN);
|
||||||
|
unregister_code(KC_MS_WH_DOWN);
|
||||||
|
#else
|
||||||
register_code(KC_PGDN);
|
register_code(KC_PGDN);
|
||||||
unregister_code(KC_PGDN);
|
unregister_code(KC_PGDN);
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
|
#ifdef MOUSEKEY_ENABLE
|
||||||
|
register_code(KC_MS_WH_UP);
|
||||||
|
unregister_code(KC_MS_WH_UP);
|
||||||
|
#else
|
||||||
register_code(KC_PGUP);
|
register_code(KC_PGUP);
|
||||||
unregister_code(KC_PGUP);
|
unregister_code(KC_PGUP);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue