diff options
author | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
---|---|---|
committer | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
commit | 7ed78a843d4a90ae8adc69bf3c3dbf573a379f75 (patch) | |
tree | 420f8e7829b46bf43b5dbafc46f0a72f644e9588 /users/anderson/smoothled.c | |
parent | 392a85e1f6fefd549cd52945ab1447a2d6901484 (diff) |
remove userspace declarations
Diffstat (limited to 'users/anderson/smoothled.c')
-rw-r--r-- | users/anderson/smoothled.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/users/anderson/smoothled.c b/users/anderson/smoothled.c deleted file mode 100644 index 3af729563c..0000000000 --- a/users/anderson/smoothled.c +++ /dev/null @@ -1,34 +0,0 @@ -#include <smoothled.h> - -static uint32_t sourceColor = 0x000000; -static uint32_t currentColor = 0x000000; -static uint32_t targetColor = 0x000000; -static int32_t smoothledTimer = -1; - -void smoothled_set(uint32_t color) { - smoothledTimer = timer_read32(); - sourceColor = currentColor; - targetColor = color; -} - -void smoothled_process(void) { - if (smoothledTimer < 0) { - return; - } - int32_t kb = timer_elapsed32(smoothledTimer); - int32_t ka = SMOOTH_DURATION - kb; - if (kb > SMOOTH_DURATION) { - kb = SMOOTH_DURATION; - ka = 0; - smoothledTimer = -1; - } - currentColor = 0; - for (int i = 2; i >= 0; i--) { - uint32_t shift = i * 8; - currentColor |= (ka * ((uint32_t)(sourceColor >> shift) & 0xFF) + kb * ((uint32_t)(targetColor >> shift) & 0xFF)) / SMOOTH_DURATION; - /*currentColor |= ((targetColor >> shift) & 0xFF);*/ - currentColor <<= 8; - } - currentColor >>= 8; - rgblight_setrgb((currentColor >> 16) & 0xFF, (currentColor >> 8) & 0xFF, currentColor & 0xFF); -} |