diff options
Diffstat (limited to 'keyboards/yosino58/lib/rgb_state_reader.c')
-rw-r--r-- | keyboards/yosino58/lib/rgb_state_reader.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/yosino58/lib/rgb_state_reader.c b/keyboards/yosino58/lib/rgb_state_reader.c new file mode 100644 index 000000000..e0efe2e52 --- /dev/null +++ b/keyboards/yosino58/lib/rgb_state_reader.c | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifdef RGBLIGHT_ENABLE | ||
2 | |||
3 | #include QMK_KEYBOARD_H | ||
4 | #include <stdio.h> | ||
5 | |||
6 | extern rgblight_config_t rgblight_config; | ||
7 | char rbf_info_str[24]; | ||
8 | const char *read_rgb_info(void) { | ||
9 | |||
10 | snprintf(rbf_info_str, sizeof(rbf_info_str), "%s %2d h%3d s%3d v%3d", | ||
11 | rgblight_config.enable ? "on" : "- ", rgblight_config.mode, | ||
12 | rgblight_config.hue, rgblight_config.sat, rgblight_config.val); | ||
13 | return rbf_info_str; | ||
14 | } | ||
15 | #endif | ||