Created
June 29, 2016 13:50
-
-
Save kindohm/5c6b051c7743bf019baad1b42ad647f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Sound.Tidal.MidiRack3 where | |
import Sound.Tidal.Params | |
import Sound.Tidal.MIDI.Control | |
(perf1, perf1_p) = pF "perf1" (Just 0.5) | |
(perf2, perf2_p) = pF "perf2" (Just 0.5) | |
(tun, tun_p) = pF "tun" (Just 0.5) | |
rackController :: ControllerShape | |
rackController = ControllerShape { controls = [ | |
mCC perf1_p 35, | |
mCC perf2_p 36, | |
mCC tun_p 16 | |
], | |
latency = 0.1 | |
} | |
rack = toShape rackController |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment