Search found 14 matches

by armatronix
31 Dec 2011 04:29
Forum: General Discussion
Topic: Query for an object's MIDI mapping?
Replies: 2
Views: 1011

Re: Query for an object's MIDI mapping?

OK thanks, I think I see how this can work now.
by armatronix
30 Dec 2011 07:50
Forum: General Discussion
Topic: Query for an object's MIDI mapping?
Replies: 2
Views: 1011

Query for an object's MIDI mapping?

Is it possible to get an object's MIDI mapping (or custom MIDI) settings from within a script? This would be very handy for something I'm working on.
by armatronix
28 Dec 2011 03:29
Forum: Projects
Topic: Accelerometer to CC output (Missing Link)
Replies: 2
Views: 3184

Re: Accelerometer to CC output (Missing Link)

Here's a new version, I used an extra ring area to smooth z. Can anyone help me figure out how to make ring areas move when the interface loads, without requiring initial touches? To do: * allow user to change x, y, and z target cc#s (dynamic osc addressing) * change target midi channel (dynamic osc ...
by armatronix
19 Dec 2011 23:44
Forum: General Discussion
Topic: midiout(target,msg[]) bug????
Replies: 5
Views: 1710

Re: midiout(target,msg[]) bug????

It's true, each command at least needs an example. We're not all computer programmers.

And I've wasted way too much time scrolling thru the manual pdf, I'll probably just print out the reference pages at this point so I can make notes. This is where a wiki-style manual could be nice.
by armatronix
19 Dec 2011 23:16
Forum: General Discussion
Topic: midiout(target,msg[]) bug????
Replies: 5
Views: 1710

Re: midiout(target,msg[]) bug????

For midi messages which are channel-specific, the midi channel is part of the first byte of the message. The second digit of the first byte specifies the midi channel if you write it as a hexadecimal byte. For example, if you want to send a cc, the first byte will be 0xb#, where # is the midi ...
by armatronix
19 Dec 2011 08:07
Forum: Projects
Topic: Accelerometer to CC output (Missing Link)
Replies: 2
Views: 3184

Accelerometer to CC output (Missing Link)

Here's my first template, it's pretty simple. I wanted to be able to output CCs based upon the attitude of the device. For Missing Link users, one important concept here is a technique for sending a message only when an axis changes by enough to warrant it, otherwise the MIDI stream gets flooded ...
by armatronix
19 Dec 2011 02:32
Forum: General Discussion
Topic: sysex 8bit instead of 7bit ..
Replies: 4
Views: 1437

Re: sysex 8bit instead of 7bit ..

A sysex message needs to begin with 0xf0 and end with 0xf7, see if that helps any.
by armatronix
18 Dec 2011 06:21
Forum: General Discussion
Topic: Midiout delay?
Replies: 19
Views: 5955

Re: Midiout delay?

You'll have to figure out the syntax, but you should be able to do something like this: on a noteon event ...send a noteon ...oldTime = time ...trigger = true if trigger == true and time-oldTime >= hold ...send a noteoff ...trigger = false You probably can also do it with a multiball using its adsr ...
by armatronix
10 Dec 2011 19:34
Forum: General Discussion
Topic: Change CC number via scirpt?
Replies: 14
Views: 5264

Re: Change CC number via scirpt?

+1 I could use an onMidiOut function, or the ability to internally loop-back MIDI that gets sent out so you could use onMidi.