Skip to content

Commit e766739

Browse files
author
Will Griffiths
committed
Update Kyria keymap to version 1.1 with new build targets and added configuration files. Introduced RGB lighting effects and detailed readme for user guidance.
1 parent 41ee833 commit e766739

File tree

5 files changed

+564
-3
lines changed

5 files changed

+564
-3
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/* Copyright 2022 Thomas Baart <[email protected]>
2+
*
3+
* This program is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 2 of the License, or
6+
* (at your option) any later version.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
15+
*/
16+
17+
#pragma once
18+
19+
#ifdef RGBLIGHT_ENABLE
20+
# define RGBLIGHT_EFFECT_BREATHING
21+
# define RGBLIGHT_EFFECT_RAINBOW_MOOD
22+
# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
23+
# define RGBLIGHT_EFFECT_SNAKE
24+
# define RGBLIGHT_EFFECT_KNIGHT
25+
# define RGBLIGHT_EFFECT_CHRISTMAS
26+
# define RGBLIGHT_EFFECT_STATIC_GRADIENT
27+
# define RGBLIGHT_EFFECT_RGB_TEST
28+
# define RGBLIGHT_EFFECT_ALTERNATING
29+
# define RGBLIGHT_EFFECT_TWINKLE
30+
# define RGBLIGHT_HUE_STEP 8
31+
# define RGBLIGHT_SAT_STEP 8
32+
# define RGBLIGHT_VAL_STEP 8
33+
# ifndef RGBLIGHT_LIMIT_VAL
34+
# define RGBLIGHT_LIMIT_VAL 150
35+
# endif
36+
#endif
37+

0 commit comments

Comments
 (0)