Skip to content

Instantly share code, notes, and snippets.

@kindohm
Created June 29, 2016 13:50
Show Gist options
  • Save kindohm/5c6b051c7743bf019baad1b42ad647f5 to your computer and use it in GitHub Desktop.
Save kindohm/5c6b051c7743bf019baad1b42ad647f5 to your computer and use it in GitHub Desktop.
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