I have another simple teletype question for the crew here!

I am trying to better get a hold of the patterns section as methods of storing things. So, I wanted to make a couple of different note phrases in to 1 pattern in different indexes in the hopes of basically creating scenes that I can move between.

So, say I wanted to have 3 phrases of note values in pattern 0. They would be 8 steps long, thus, the first pattern would be 0-7, the next would be 8-15 and finally 16-23.

Now, I want to just send a clock to scene input 1 to keep things simple and have a random swap between these different sections of pattern. My simple idea was to have K be my pattern identifier (either 1, 2 or 3) and be able to semi-randomly swap between these patters.

Is there a good way to exchange loop areas? How would I go about this? I’ve tried altering the loop and I’ve tried having k define what the next phrase would be, but then I goof something up and the pattern gets locked at the beginning index instead of moving on to the next number.

I could put together how my failing example looked if that would help.

I

P.L 8
1

K RND 1 3
IF == K 1: P.START 0
ELIF == K 2: P.START 8
ELSE: P.START 16

I think it would be okay, but I have to verify tonight to ensure it works.

3 Likes
1 

P.START * 8 RND 2

20 chars of fillers

2 Likes

With this, I could add a line of probability for different patterns using a local variable too. Thanks once again!!!

1 Like

Did you already see this: Teletype workflow, basics, and questions
I also had this problem and just replaced the screen. @tehn may help you!

1 Like

Does anyone have any suggestions on how to approximate the Marbles jitter knob on TT? I did come across this post but wasn’t able to successfully single out the jitter function.

thanks for this, it has only happened once and it’s gone now. The screen doesn’t appear to be detached in any way, but I’ll keep an eye on it :grimacing:

1 Like

Since it is now buried in the “New to Monome” thread by a modprune, here is my simple CV recorder, which is forming the basis of a very fun joystick-driven patch today:

Script 1 (arm record while high, disarm and reset sequence on falling edge):

IF ! STATE 1: X 0; P.I P.L
IF ! STATE 1: BREAK
IF X: BREAK
P.I 0; P.L 0; X 1
P.MAP: 0

Script 2 (trigger advances clock):

IF && X STATE 1: $ 4
IF ! OR X STATE 1: $ 3

Script 3 (playback function):

CV 1 P.NEXT

Script 4 (record function):

J IN; P.PUSH J; CV 1 J

Init script:

$.POL 1 3; X 0
6 Likes

Hi Everyone ! I would like to know if there is a script for copy the « sending » TR 1-4 and CV 1-4 teletype outs to the ER-301 by i2c ?
That’s for not changing line by line the outs of the original scene

Hi @Mad86,
I don´t think there is a general solution to copy all TT´s outs to redirect to ER-301 as this is not the way how TT is programmed. In such cases I change or add the SC-commands to the code line by line. As the scripts are by its nature not such big, it takes usually not very long to change a script.

Hi @KitKatAndy !

Thanks for your reply. So, ok it’s the only way I was thinking about.
Maybe it will improve…
It can to be cool to have the possibility of setting it in a init scene…

that was the main idea behind this proposal: NOTE teletype op

1 Like

Have you looked into Ansible’s i2c leader mode (new in v3.0.0)?

1 Like

Ok I need to try it. That sound exactly what I mean. Thank you :pray:t2:

Ok I must to upgrade… thank you :blush:

I would probably recommend updating directly to the latest beta, posted here.

1 Like

sorry - i should’ve been more clear - it’s just a proposal, not currently implemented.

1 Like

Great :+1:t3: cool I will made from here. Thanks again.

Ah ok I was believe it’s rule.
Yes it’s a good idea that you have, I hope it will developed, it can simplify things.

1 Like

I’m trying to add probability to a trigger pattern but my skills are still poor.
Having a simple pattern:
1 0 0 1 0 1 1 0

and script 1 with:
X PN.NEXT 0
IF NZ X: TR.P 1

Script 1 is triggered by metro with $1

How can I add a PROB op to decide to read or not the 1 values in the pattern?