Skip to content

Instantly share code, notes, and snippets.

@silveira
Created November 20, 2017 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silveira/57e2836828c08e40bc0fadc3d28720b1 to your computer and use it in GitHub Desktop.
Save silveira/57e2836828c08e40bc0fadc3d28720b1 to your computer and use it in GitHub Desktop.
a simple synth loop for Sonic Pi
use_synth :pulse
notes = [:C,:D,:E,:C,:F,:E]
live_loop :x do
with_fx :wobble do
for note in notes
play note
sleep 0.5
end
sleep 0.5
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment