summaryrefslogtreecommitdiffstats
path: root/quantum/rgb_matrix_animations/solid_color_anim.h
blob: 24a197beb34dd26af43b6b8a5625bb8dc0f5c28b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

extern rgb_config_t rgb_matrix_config;

bool rgb_matrix_solid_color(effect_params_t* params) {
  RGB_MATRIX_USE_LIMITS(led_min, led_max);

  HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, rgb_matrix_config.val };
  RGB rgb = hsv_to_rgb(hsv);
  for (uint8_t i = led_min; i < led_max; i++) {
    rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
  }
  return led_max < DRIVER_LED_TOTAL;
}