[New Feature/Core] New RGB Matrix Animation "Starlight Smooth" (#25203)

This commit is contained in:
art-was-here 2025-05-11 15:50:36 -07:00 committed by GitHub
parent 3e7ce54902
commit 7f42a5bc03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 0 deletions

View file

@ -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"

View 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