# Corinnes Stueck
use_synth :piano

live_loop :ErsteStimme do
  
  5.times do
    
    play_pattern_timed [:g2,  :b2, :e3, :c3, :a4, :f3] , [ 0.5, 0.4, 0.1]
    play_pattern_timed [:g2,  :a4, :g3, :b3, :b4, :a3] , [ 0.5, 0.1, 0.3]
    play_pattern_timed [:f3,  :e3, :c3, :d3 ] , [0.5, 0.4, 0.1, 0.2]
    play_pattern_timed [:f3,  :a4, :b4] , [0.5, 0.3, 6.0]
    
    
    use_bpm current_bpm  + 9
    
    
    
  end
end

use_synth :sine
live_loop :ZweiteStimme do
  
  5.times do
    
    play_pattern_timed [:g5,  :b1, :e4, :c2, :a5, :f2] , [ 0.1, 0.2, 0.1]
    play_pattern_timed [:g4,  :a4, :g3, :b3, :b4, :a4] , [ 0.2, 0.1, 0.2]
    play_pattern_timed [:f3,  :e4, :c3, :d3 ] , [0.1, 0.2, 0.1, 0.2]
    play_pattern_timed [:f3,  :a3, :b4] , [0.1, 0.2, 0.1]
    
    
    use_bpm current_bpm  + 1
    
    
    
    
  end
end


