Files
my-ws2812b-led-deprecated/shader.c
Passthem 7e455c591a init
2025-04-11 15:40:18 +08:00

5 lines
116 B
C

#include "shader.h"
Color shader(int index, double time) {
return hsv_to_color(time * 120 + index * 6, 1, 1);
}