2023-10-19 18:59:36 +00:00
|
|
|
// Copyright 2023 Ryan Neff (@JellyTitan)
|
2023-10-01 22:44:40 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/* - Encoder settings - */
|
|
|
|
#ifdef ENCODER_MAP_ENABLE
|
|
|
|
// Key delay for encoders (necessary for some keycodes)
|
|
|
|
# define ENCODER_MAP_KEY_DELAY 10
|
|
|
|
#endif
|
|
|
|
|
2023-10-19 18:59:36 +00:00
|
|
|
/* Allows for the setting of constant mouse speed levels. */
|
2023-11-25 22:43:28 +00:00
|
|
|
/* Not all mouse wheel config settings are currently supported in .json config.*/
|
|
|
|
/* https://github.com/qmk/qmk_firmware/blob/master/docs/reference_info_json.md */
|
2023-10-19 18:59:36 +00:00
|
|
|
/* Step size */
|
|
|
|
#define MOUSEKEY_MOVE_DELTA 8
|
|
|
|
/* Maximum number of scroll steps per scroll action */
|
|
|
|
#define MOUSEKEY_WHEEL_MAX_SPEED 42
|
|
|
|
/* Time until maximum scroll speed is reached */
|
|
|
|
#define MOUSEKEY_WHEEL_TIME_TO_MAX 15
|
|
|
|
|
|
|
|
#define POINTING_DEVICE_ROTATION_90
|
|
|
|
#define SPLIT_POINTING_ENABLE
|
|
|
|
#define POINTING_DEVICE_RIGHT
|
|
|
|
#define POINTING_DEVICE_TASK_THROTTLE_MS 8
|
2023-10-01 22:44:40 +00:00
|
|
|
/*
|
|
|
|
- RGB Stuff -
|
|
|
|
All effects can be found in the QMK docs:
|
|
|
|
https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects
|
|
|
|
*/
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
|
2023-10-19 18:59:36 +00:00
|
|
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED
|
|
|
|
// Decrease decay of heatmap rgb effect
|
|
|
|
# define RGB_MATRIX_TYPING_HEATMAP_DECREASE_DELAY_MS 50
|
|
|
|
// If you're setting colors per key, this is required.
|
|
|
|
# define SPLIT_LAYER_STATE_ENABLE
|
|
|
|
|
2023-10-01 22:44:40 +00:00
|
|
|
// Default effect when EEPROM cleared
|
|
|
|
# define RGB_MATRIX_DEFAULT_MODE RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
|
|
|
|
|
|
|
// Turns off RGB effects when there is no longer a USB connection
|
|
|
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED
|
|
|
|
|
|
|
|
// Key press reactive animations
|
|
|
|
# define SPLIT_TRANSPORT_MIRROR // Necessary setting for key press animations
|
|
|
|
# define RGB_MATRIX_KEYPRESSES // Enables key press effects
|
|
|
|
# define ENABLE_RGB_MATRIX_MULTISPLASH
|
|
|
|
|
|
|
|
// Normal effects
|
|
|
|
# define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
|
|
|
# define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
|
|
|
# define ENABLE_RGB_MATRIX_PIXEL_RAIN
|
|
|
|
#endif
|