Further refinement of tidbit keymaps

This commit is contained in:
kemonine 2020-11-12 22:43:55 -05:00
parent 89b508925f
commit 2fc3dbc208
6 changed files with 20 additions and 10 deletions

View File

@ -29,3 +29,7 @@
#define MOUSEKEY_WHEEL_INTERVAL 50
#define MOUSEKEY_WHEEL_TIME_TO_MAX 20
#define MOUSEKEY_WHEEL_MAX_SPEED 10
// Encoder
#define ENCODERS_PAD_A { D3 }
#define ENCODERS_PAD_B { D2 }

View File

@ -46,8 +46,8 @@
#define RGBLIGHT_ANIMATIONS
/* Optional encoder pins */
#define ENCODERS_PAD_A { B5, B3 }
#define ENCODERS_PAD_B { B4, B2 }
//#define ENCODERS_PAD_A { B5, B3 }
//#define ENCODERS_PAD_B { B4, B2 }
/* Additional optional encoder pins */
// #define ENCODERS_PAD_A { D1, D0 } //Can only be used if I2C is not used

View File

@ -14,5 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define ENCODERS_PAD_A { B5, B3 }
#define ENCODERS_PAD_B { B4, B2 }
#define TAPPING_TERM 200
#define ENCODERS_PAD_A { D3 }
#define ENCODERS_PAD_B { D2 }

View File

@ -16,5 +16,5 @@
#define TAPPING_TERM 200
#define ENCODERS_PAD_A { B5, B3 }
#define ENCODERS_PAD_B { B4, B2 }
#define ENCODERS_PAD_A { B2 }
#define ENCODERS_PAD_B { B3 }

View File

@ -40,10 +40,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// Base layer (numpad)
[_BASE] = LAYOUT(
KC_NO, KC_KP_ASTERISK, KC_KP_MINUS, \
KC_KP_7, KC_KP_8, KC_KP_9, KC_NO, \
KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_PLUS, \
KC_KP_1, KC_KP_2, KC_KP_3, KC_NO, \
KC_KP_0, KC_NO, KC_KP_DOT, TD(TD_ENTER_LAYER) \
KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_PLUS, \
KC_KP_4, KC_KP_5, KC_KP_6, KC_NO, \
KC_KP_1, KC_KP_2, KC_KP_3, TD(TD_ENTER_LAYER), \
KC_NO, KC_KP_0, KC_KP_DOT, KC_NO \
),
// Function layer (numpad)
[_FUNC] = LAYOUT(

View File

@ -29,3 +29,7 @@
#define MOUSEKEY_WHEEL_INTERVAL 50
#define MOUSEKEY_WHEEL_TIME_TO_MAX 20
#define MOUSEKEY_WHEEL_MAX_SPEED 10
// Encoder
#define ENCODERS_PAD_A { D3 }
#define ENCODERS_PAD_B { D2 }