UNPKG
wolkd
Version:
latest (0.5.2)
0.5.2
0.5.1
0.5.0
Server and user interface to control WS2801 RGB LED strips via SPI
wolk.bike
bertspaan/wolkd
wolkd
/
patterns
/
functions
/
snake.js
11 lines
(10 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
= {
title
:
'Snake'
,
getPixel
:
function
(
beat, t, i
) {
if
(
Math
.
abs
((t %
100
) - i) <
5
) {
return
[
255
,
255
,
255
]; }
else
{
return
[
0
,
0
,
0
]; } } };