Greetings All
I'm trying to output a a number "0" every second (to a text file) unless a bang is sent, in which case a number "1" will be written to the text file instead of a zero. The problem I'm having is converting a bang into a number. I tried using moses but moses has no number for bang. Any work arounds?
Example: bng | moses 1 | | 0( 1(
Thanks
Quoting Rick T ratulloch@gmail.com:
moses 1
hmm, it seems that you expect [moses] to have super-cow powers (or propbably super-saint powers), why do you think that it will convert [bang(s to numbers? you should really read the help-patch of this object (right-click on it and select "Help"). (btw, i am a long time patcher and personally don't use this object very often; it hardly ever solves a problem for me - unlike [trigger] :-))
anyhow converting a bang to a number is as simple as sending the bang into a number object
[bang( | [f 12] |
will output "12" whenever you click on bang.
your specificproblem is more of resetting the number to 0 after you have output 1.
something like
[metro 1000] | | [bang( | | | [f 1] | | +------------+ [f] | | | [t f b] | | | | | [f 0] | | | | | +--------+ |
dfmSR# IOhannes