Here is a drum measure I wish to implement:
from here : https://www.youtube.com/watch?v=1KKZ-SaVZhA&t=363s
Music sheet http://drumeoblog.s3.amazonaws.com/Resources/drumeo-edge-1786.pdf , 1st page 1st rhythm.
The rhythm seems to be not ok for me.Is the bpm right.
How can I change the code to catch the rhythm.
use_bpm 120
CC = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6]
BD = [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]
CH = [1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0]
SN = [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0]
SN.length.times do
tick
sample :drum_bass_hard if BD.look == 1
sample :drum_cymbal_closed if CH.look == 1
sample :drum_snare_soft if SN.look == 1
sleep 0.5
end