Page 1 of 1
Posted: 06 Jun 2012, 01:31
by seamus
I have a knob on a synth that when engaged is .75 and when disengaged is .25
The trouble is i need to pass along the values of when .25 = 0 when .75 = 1
how do I patch this?
Posted: 06 Jun 2012, 02:37
by seamus
http://www.sensomusic.com/forums/upload ... roblem.JPG
here is a visual.
I cant pass along values from the synth to my usine switch because the values are .25 and .75 instead of 0 and 1 which the switch needs to be updated
Posted: 06 Jun 2012, 03:17
by r.erorr
you can use mapper (value) module and set your inputs and outputs as you want.
Posted: 06 Jun 2012, 03:21
by r.erorr
or maybe more simple: use A=B module and set B value 75.
This means 75 = 1, not 75 = 0
Posted: 06 Jun 2012, 07:05
by seamus
And the .25 for zero? I was having problems with the 0 and 1 messages not being able to be passed on properly.
I will see of I can successfully patch it and post a screenshot for the lone curious fellow who happens to see.
Posted: 06 Jun 2012, 09:24
by iococoi
how about the Auto Scale script? ...Data>Data Manipulation>Auto Scale[script]
~io
Posted: 06 Jun 2012, 11:21
by caco
You could also take the output of the knob, add 0.5 to it and then use the trunc module to round down to the integer.
0.25 + 0.5 = 0.75. Trunc will then output zero.
0.75 + 0.5 = 1.25. Trunc will then output 1.