rgb_state_reader.c (402B)
1 #ifdef RGBLIGHT_ENABLE 2 3 #include <stdio.h> 4 #include "rgblight.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