I keep checking how Pi and Tau have small syntax differences and always go back to their documentations. When I was reading Tau’s Generator topic, there is an example which does not work properly:
sample :bd_haus, on: bools(1, 0, 0, 1, 0, 1, 0, 0).tick
It’s just because it’s not inserted in a live_loop, and it is also missing an sleep, like this:
live_loop :myspread do
sample :bd_haus, on: bools(1, 0, 0, 1, 0, 1, 0, 0).tick
sleep 0.25
end