[New Feature/Core] New RGB Matrix Animation "Starlight Smooth" (#25203)
This commit is contained in:
parent
3e7ce54902
commit
7f42a5bc03
3 changed files with 29 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
#include "solid_reactive_nexus.h"
|
||||
#include "splash_anim.h"
|
||||
#include "solid_splash_anim.h"
|
||||
#include "starlight_smooth_anim.h"
|
||||
#include "starlight_anim.h"
|
||||
#include "starlight_dual_sat_anim.h"
|
||||
#include "starlight_dual_hue_anim.h"
|
||||
|
|
26
quantum/rgb_matrix/animations/starlight_smooth_anim.h
Normal file
26
quantum/rgb_matrix/animations/starlight_smooth_anim.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Copyright 2022 @art-was-here
|
||||
// SPDX-License-Identifier: GPL-2.0+
|
||||
|
||||
#ifdef ENABLE_RGB_MATRIX_STARLIGHT_SMOOTH
|
||||
RGB_MATRIX_EFFECT(STARLIGHT_SMOOTH)
|
||||
# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
|
||||
static uint8_t phase_offsets[RGB_MATRIX_LED_COUNT];
|
||||
|
||||
hsv_t STARLIGHT_SMOOTH_math(hsv_t hsv, uint8_t i, uint8_t time) {
|
||||
if (phase_offsets[i] == 0) {
|
||||
phase_offsets[i] = rand() % 255;
|
||||
}
|
||||
hsv.v = scale8(abs8(sin8((time + phase_offsets[i]) / 2) - 128) * 2, hsv.v);
|
||||
return hsv;
|
||||
}
|
||||
|
||||
bool STARLIGHT_SMOOTH(effect_params_t* params) {
|
||||
if (params->init) {
|
||||
memset(phase_offsets, 0, sizeof(phase_offsets));
|
||||
}
|
||||
return effect_runner_i(params, &STARLIGHT_SMOOTH_math);
|
||||
}
|
||||
|
||||
# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
#endif // ENABLE_RGB_MATRIX_STARLIGHT_SMOOTH
|
Loading…
Add table
Add a link
Reference in a new issue