diff options
Diffstat (limited to 'users')
| -rw-r--r-- | users/curry/rgb_lighting_user.c | 2 | ||||
| -rw-r--r-- | users/romus/romus.c | 20 | ||||
| -rw-r--r-- | users/xtonhasvim/fancylighting.c | 4 | ||||
| -rw-r--r-- | users/xtonhasvim/fancylighting.h | 2 | ||||
| -rw-r--r-- | users/zer09/lights.h | 2 | 
5 files changed, 5 insertions, 25 deletions
| diff --git a/users/curry/rgb_lighting_user.c b/users/curry/rgb_lighting_user.c index 34156744fe..81f3c4e505 100644 --- a/users/curry/rgb_lighting_user.c +++ b/users/curry/rgb_lighting_user.c @@ -142,7 +142,7 @@ void scan_rgblight_fadeout(void) {  // Don't effing change this function .... rg              if (light->life) {                  light->life -= 1;                  if (get_highest_layer(layer_state) == 0) { -                    sethsv(light->hue + rand() % 0xF, 255, light->life, (LED_TYPE *)&led[light_index]); +                    sethsv(light->hue + rand() % 0xF, 255, light->life, (rgb_led_t *)&led[light_index]);                  }                  light->timer = timer_read();              } else { diff --git a/users/romus/romus.c b/users/romus/romus.c index e16dd3b8a0..a49a2fe205 100644 --- a/users/romus/romus.c +++ b/users/romus/romus.c @@ -1,25 +1,5 @@  #include "romus.h" -/*---------------*\ -|*-----MOUSE-----*| -\*---------------*/ -#ifdef MOUSEKEY_ENABLE -#include "mousekey.h" -#endif - -/*-------------*\ -|*-----RGB-----*| -\*-------------*/ -#ifdef RGBLIGHT_ENABLE -#include "rgblight.h" -#endif - -/*-------------*\ -|*---UNICODE---*| -\*-------------*/ -#ifdef UNICODE_ENABLE -#endif -  /*-----------------*\  |*-----SECRETS-----*|  \*-----------------*/ diff --git a/users/xtonhasvim/fancylighting.c b/users/xtonhasvim/fancylighting.c index a88ca4beb3..e3d1093b8d 100644 --- a/users/xtonhasvim/fancylighting.c +++ b/users/xtonhasvim/fancylighting.c @@ -45,7 +45,7 @@ void matrix_scan_keymap(void) {  uint16_t effect_start_timer = 0;  uint8_t user_rgb_mode = 0; -LED_TYPE shadowed_led[RGBLED_NUM] = {{0}}; +rgb_led_t shadowed_led[RGBLED_NUM] = {{0}};  void start_firey_return(void) {    user_rgb_mode = BREATH_FIRE; @@ -79,7 +79,7 @@ void set_color_for_offsets(uint16_t time_offset, uint16_t space_offset, uint8_t    float alpha = (time_progress + 0.1) * 7.0 - space_progress;    alpha = fmin(1.0, alpha*alpha); -  LED_TYPE px[1] = {{0}}; +  rgb_led_t px[1] = {{0}};    sethsv((uint16_t)(fmod(time_progress * 1.5 + space_progress,1.0)*360), 255, (uint8_t)(progress*255),&px[0]);    led[idx].r = alpha * px[0].r + ( 1.0 - alpha) * shadowed_led[idx].r;    led[idx].g = alpha * px[0].g + ( 1.0 - alpha) * shadowed_led[idx].g; diff --git a/users/xtonhasvim/fancylighting.h b/users/xtonhasvim/fancylighting.h index 02fb58b84a..b1a5c725f1 100644 --- a/users/xtonhasvim/fancylighting.h +++ b/users/xtonhasvim/fancylighting.h @@ -22,7 +22,7 @@  extern uint8_t user_rgb_mode; -extern LED_TYPE shadowed_led[]; +extern rgb_led_t shadowed_led[];  #endif //RGBLIGHT_ENABLE diff --git a/users/zer09/lights.h b/users/zer09/lights.h index f1bd7245d5..380283b733 100644 --- a/users/zer09/lights.h +++ b/users/zer09/lights.h @@ -9,7 +9,7 @@  #define EECONFIG_LED_DIM_LVL (uint8_t *)15  #define SET_LED_RGB(r, g, b, led_dim, pos)                                     \ -  setrgb(r >> led_dim, g >> led_dim, b >> led_dim, (LED_TYPE *)&led[pos]) +  setrgb(r >> led_dim, g >> led_dim, b >> led_dim, (rgb_led_t *)&led[pos])  typedef enum {    DEFAULT, | 
