as @Kel mentions, setting up Teletype to be a simple looping step-sequencer is really easy (mentioned this one yesterday in the modular beginners thread).
First of all the real fun is making it do stuff, generating material, as opposed to writing down a linear score and having the module play that. You can use the patterns to just write down a sequence of pitches and then play those in a loop (and that’s really just a couple of lines of code), but that begs the question: why do that with the TT in the first place? There’s better modules to do that I think.
I agree. What I typically do is I start from looping through a simple pattern and then see what interesting things I can do to switch things up, make it somehow performative/generative/moving (much like I would by patching in modulation to a sound source)
For example, I might start with:
SCRIPT 1
CV 1 N PN.NEXT 0
Maybe the pattern is 5 notes and I wonder what it’d sound like if every 3rd note was a fifth higher that what it normally is, that’d be two more lines in script 1:
SCRIPT 1
CV 1 N PN.NEXT 0
CV.OFF 1 N 0
EVERY 3: CV.OFF 1 N 5
Then maybe I want to have that pitch CV pull from several different looping sequences. That’d just be copying the code that we had on Script 1, into scripts 2, 3, and 4 to target a different pattern*. Also maybe I’ll explore different intervalic relationships when each of these scripts gets triggered.
SCRIPT 1
CV 1 N PN.NEXT 0
CV.OFF 1 N 0
EVERY 3: CV.OFF 1 N 5
SCRIPT 2
CV 1 N PN.NEXT 1
CV.OFF 1 N 0
EVERY 3: CV.OFF 1 N 7
SCRIPT 3
CV 1 N PN.NEXT 2
CV.OFF 1 N 0
EVERY 3: CV.OFF 1 N 9
SCRIPT 4
CV 1 N PN.NEXT 3
CV.OFF 1 N 0
EVERY 3: CV.OFF 1 N 11
So I can then plug in different triggers to 1, 2, 3, 4 and explore the relationship there, but what if I want to explore having just a single trigger to have a more stable rhythm to my sequence. I might set things up so I can pick which sequences is being sent to CV 1 instead through turning the param knob.
INIT SCRIPT:
PARAM.SCALE 1 4
SCRIPT 5
SCRIPT PARAM
Basically, probably a lot of the “what if I tried this?” experimentation stuff you do when you patch up things in your system using cables. I really like building up a fairly simple sequencing system, then explore it with the larger system, usually within the same music-making session (I do save things but I find myself rarely going back to em).