global [pos1, pos2, pos3, color1, color2, color3]
to startup
setbrightness 99
;change these positions to equally distribute around the 24 neopixels...or not!
setpos1 0
setpos2 8
setpos3 16
setcolor1 random 0 99
setcolor2 random 0 99
setcolor3 random 0 99
ht
loop [
clean
setc color1 setpos pos1 stamp
setc color2 setpos pos2 stamp
setc color3 setpos pos3 stamp wait 100
setpos1 pos1 + 1
setpos2 pos2 + 1
setpos3 pos3 + 1
]
end