blob: 5aa086ffab0871429753684ca51985433ad18087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/**
* @file universal.h
*
Copyright 2020 astro <yuleiz@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
#include "quantum.h"
#if defined(RGB_MATRIX_DISABLE_KEYCODES)
# ifndef RGB_MATRIX_TOGGLE
# define RGB_MATRIX_TOGGLE KC_F16
# endif
# ifndef RGB_MATRIX_STEP
# define RGB_MATRIX_STEP KC_F17
# endif
# ifndef RGB_MATRIX_INC_HUE
# define RGB_MATRIX_INC_HUE KC_F18
# endif
# ifndef RGB_MATRIX_DEC_HUE
# define RGB_MATRIX_DEC_HUE KC_F19
# endif
# ifndef RGB_MATRIX_INC_SAT
# define RGB_MATRIX_INC_SAT KC_F20
# endif
# ifndef RGB_MATRIX_DEC_SAT
# define RGB_MATRIX_DEC_SAT KC_F21
# endif
# ifndef RGB_MATRIX_INC_VAL
# define RGB_MATRIX_INC_VAL KC_F22
# endif
# ifndef RGB_MATRIX_DEC_VAL
# define RGB_MATRIX_DEC_VAL KC_F23
# endif
#endif
|