diff options
author | Ivan Choi <34844887+navigatorade@users.noreply.github.com> | 2018-12-05 18:20:39 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-05 15:20:39 -0800 |
commit | fd0f78254db8e7b505c9ac46b8210721d6fc20b5 (patch) | |
tree | 30b4b4d1e35361c3d624ed16c613609bfc864c47 /keyboards/planck/keymaps/navi/config.h | |
parent | 04de0533b8559c5e8d30508a4a4a786b327d970c (diff) | |
download | qmk_firmware-fd0f78254db8e7b505c9ac46b8210721d6fc20b5.tar.gz qmk_firmware-fd0f78254db8e7b505c9ac46b8210721d6fc20b5.zip |
Keymap: Updated files to work with Planck Rev. 6 (#4552)
* Update to work with Planck Rev. 6
Still something that needs to be worked with under keymap.c
Qwerty layer tap-toggle function seems to be a little laggy? Not instantaneous
* Changes
Deleted some unneeded lines
* deleting unneeded lines
Diffstat (limited to 'keyboards/planck/keymaps/navi/config.h')
-rw-r--r-- | keyboards/planck/keymaps/navi/config.h | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/keyboards/planck/keymaps/navi/config.h b/keyboards/planck/keymaps/navi/config.h index 694053c6a4..087ebb54e7 100644 --- a/keyboards/planck/keymaps/navi/config.h +++ b/keyboards/planck/keymaps/navi/config.h @@ -1,7 +1,14 @@ -#ifndef CONFIG_USER_H -#define CONFIG_USER_H +#pragma once -#include "config_common.h" +#ifdef AUDIO_ENABLE + #define STARTUP_SONG SONG(PLANCK_SOUND) + // #define STARTUP_SONG SONG(NO_SOUND) + + #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ + SONG(COLEMAK_SOUND), \ + SONG(DVORAK_SOUND) \ + } +#endif /* * MIDI options @@ -13,7 +20,7 @@ /* enable basic MIDI features: - MIDI notes can be sent when in Music mode is on */ - + #define MIDI_BASIC /* enable advanced MIDI features: @@ -27,4 +34,18 @@ /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ //#define MIDI_TONE_KEYCODE_OCTAVES 2 -#endif
\ No newline at end of file +// Most tactile encoders have detents every 4 stages +#define ENCODER_RESOLUTION 4 + +#define MOUSEKEY_INTERVAL 16 + +#define MOUSEKEY_DELAY 0 + +#define MOUSEKEY_TIME_TO_MAX 60 + +#define MOUSEKEY_MAX_SPEED 7 + +#define MOUSEKEY_WHEEL_DELAY 0 + +#define TAPPING_TERM 80 +#define TAPPING_TOGGLE 2 |