Adam Neely 7-11 polyrythmes

# Adam Neely 7-11 polyrythmes
# https://youtu.be/W4hWmZSOQjM?feature=shared&t=1263

# 1 2 3 4 5 6 7
# 1
#         5
#
#   2
#           6
#
#     3
#             7
#
#       4
#

set_volume! 2
use_bpm 210

with_fx :reverb, room: 0.4 do
  live_loop :a1 do
    tick
    
    # 2 2 3 2 2   = 11
    #sample :elec_tick if bools(1,0,1,0,1,0,0,1,0,1,0).look
    
    #                                               # Helpers to keep track of time
    sample :bd_fat, amp: 2 if spread(1,7).look      # 1 in 7
    #sample :elec_tick if spread(7,7).look          #
    
    sample :bd_fat, rpitch: 24 if spread(1,11).look # 7-11 polyrythmes
    
    sleep 0.25
  end
end

1 Like

This is very silly. :slight_smile: But good on ya!

1 Like