qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

rgb_state_reader.c (380B)


      1 #ifdef RGBLIGHT_ENABLE
      2 
      3 #include <stdio.h>
      4 
      5 extern rgblight_config_t rgblight_config;
      6 char rbf_info_str[24];
      7 const char *read_rgb_info(void) {
      8 
      9   snprintf(rbf_info_str, sizeof(rbf_info_str), "%s %2d h%3d s%3d v%3d",
     10     rgblight_config.enable ? "on" : "- ", rgblight_config.mode,
     11     rgblight_config.hue, rgblight_config.sat, rgblight_config.val);
     12   return rbf_info_str;
     13 }
     14 #endif