44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
/*
|
|
This is the c configuration file for the keymap
|
|
|
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
Copyright 2015 Jack Humbert
|
|
Copyright 2022 Jose Pablo Ramirez <jp.ramangulo@gmail.com>
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef RGB_MATRIX_ENABLE
|
|
# define SPLIT_WPM_ENABLE
|
|
#endif
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
# define RGB_MATRIX_KEYPRESSES
|
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED
|
|
# define RGB_MATRIX_MAXIMUM_BRIGHTNESS 128
|
|
# define RGB_MATRIX_STARTUP_HUE 215
|
|
# define RGB_MATRIX_STARTUP_SAT 255
|
|
# define RGB_MATRIX_STARTUP_VAL RGB_MATRIX_MAXIMUM_BRIGHTNESS
|
|
# define ENABLE_RGB_MATRIX_ALPHAS_MODS
|
|
# define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
|
# define ENABLE_RGB_MATRIX_BAND_VAL
|
|
# define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
|
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
|
# define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
|
|
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
|
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS
|
|
# define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
|
#endif
|