summaryrefslogtreecommitdiffstats
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/konstantin/rgb.c20
-rw-r--r--users/konstantin/unicode.c6
-rw-r--r--users/konstantin/unicode.h20
3 files changed, 33 insertions, 13 deletions
diff --git a/users/konstantin/rgb.c b/users/konstantin/rgb.c
index 37b1ab3d5..ed6efe87a 100644
--- a/users/konstantin/rgb.c
+++ b/users/konstantin/rgb.c
@@ -1,4 +1,24 @@
#include "rgb.h"
+#ifdef RGBLIGHT_EFFECT_BREATHING
+const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {20, 30, 5, 10};
+#endif
+
+#ifdef RGBLIGHT_EFFECT_RAINBOW_MOOD
+const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {20, 50, 100};
+#endif
+
+#ifdef RGBLIGHT_EFFECT_RAINBOW_SWIRL
+const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 50, 100};
+#endif
+
+#ifdef RGBLIGHT_EFFECT_SNAKE
+const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {20, 50, 100};
+#endif
+
+#ifdef RGBLIGHT_EFFECT_KNIGHT
+const uint8_t RGBLED_KNIGHT_INTERVALS[] PROGMEM = {20, 50, 100};
+#endif
+
const hsv_t GODSPEED_BLUE = { .h = 300, .s = 68, .v = RGBLIGHT_LIMIT_VAL };
const hsv_t GODSPEED_YELLOW = { .h = 35, .s = 165, .v = RGBLIGHT_LIMIT_VAL };
diff --git a/users/konstantin/unicode.c b/users/konstantin/unicode.c
index 44b5be6c9..144c0aaf7 100644
--- a/users/konstantin/unicode.c
+++ b/users/konstantin/unicode.c
@@ -1,7 +1,7 @@
#include "unicode.h"
#ifdef UNICODEMAP_ENABLE
- const uint32_t PROGMEM unicode_map[] = {
- FOREACH_UNICODE(UCM_ENTRY)
- };
+const uint32_t PROGMEM unicode_map[] = {
+ FOREACH_UNICODE(UCM_ENTRY)
+};
#endif
diff --git a/users/konstantin/unicode.h b/users/konstantin/unicode.h
index 6bb908e0e..c8eddabb7 100644
--- a/users/konstantin/unicode.h
+++ b/users/konstantin/unicode.h
@@ -18,17 +18,17 @@
#define UCM_KEYCODE(name, code) name = X(UCM_ ## name),
#if defined(UNICODE_ENABLE)
- enum unicode_keycodes {
- FOREACH_UNICODE(UC_KEYCODE)
- };
+enum unicode_keycodes {
+ FOREACH_UNICODE(UC_KEYCODE)
+};
#elif defined(UNICODEMAP_ENABLE)
- enum unicode_names {
- FOREACH_UNICODE(UCM_NAME)
- };
+enum unicode_names {
+ FOREACH_UNICODE(UCM_NAME)
+};
- extern const uint32_t PROGMEM unicode_map[];
+extern const uint32_t PROGMEM unicode_map[];
- enum unicode_keycodes {
- FOREACH_UNICODE(UCM_KEYCODE)
- };
+enum unicode_keycodes {
+ FOREACH_UNICODE(UCM_KEYCODE)
+};
#endif