1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/ws281x: Remove unconditional debug output

This commit is contained in:
chrysn 2024-06-05 22:41:22 +02:00
parent 571754fcd9
commit 329f6e4573

View File

@ -33,7 +33,6 @@ static int set_rgb_led(const void *dev, const phydat_t *res)
.b = res->val[2]
};
for (unsigned idx = 0; idx < ws281x->params.numof; idx++) {
puts("Setting LED");
ws281x_set(ws281x, idx, color);
}
ws281x_write(ws281x);