. is there a way to block certain midi sources or globally block a midi channel ?
. i just purchased a Livid Ohm (fantastic piece of gear, btw) and have been using their routing software to change its behavior. the problem is, the buttons normally send a '127' when they're pressed down, and then a '0' when they're released. you can change that in there software to make it a toggle switch (send '127' first time it's pressed, send a '0' the second time it's pressed).
. i'm trying to get the toggle switch to work and the data is being sent down the IAC bus 1, but the normal midi is being sent as well, down the same channel.
. the raw data from midi monitor and modul8 looks like this:
1st Press:
(data from midi monitor application)
21:04:57.198 From Livid ohm Controller Note On 1 38 127
21:04:57.199 From Bus 1 Note On 1 38 127
21:04:57.199 To Bus 1 Note On 1 38 127
21:04:57.502 From Livid ohm Controller Note Off 1 38 0
(data from modul8 - print type, param in DirectEvent)
MIDI {'timestamp': 178872231956396.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 127} **
MIDI {'timestamp': 178872233318258.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 127}
MIDI {'timestamp': 178874790945843.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 0}
2nd Press:
(data from midi monitor application)
21:04:59.294 From Livid ohm Controller Note On 1 38 127
21:04:59.295 From Bus 1 Note Off 1 38 0
21:04:59.295 To Bus 1 Note Off 1 38 0
21:04:59.550 From Livid ohm Controller Note Off 1 38 0
(data from modul8 - print type, param in DirectEvent)
MIDI {'timestamp': 178879383304628.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 0} **
MIDI {'timestamp': 178879382965275.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 127}
MIDI {'timestamp': 178879574979222.0, 'channel': 1, 'param1': 38, 'message': 'NOTE_ON', 'rawEvent': 144, 'param2': 0}
** it appears that this is the data i want to listen to, but modul8 sees both the 'Livid ohm Controller' and 'From Bus 1' (this is from the IAC driver) -- i want to ignore everything from the ohm...
. any ideas ? thx in advance!

-james
(a nomad. )