You are here

Add new comment

Thanks Rui for the speedy reply. I would just use the Nano straight into qtractor but I want transport control. I think thats only possible through mmc (?). I do have Qtractor set up for mmc and control input and everything routed correctly. I'm getting a mididings syntax error when trying to generate sysex from my Nano input. eg,
from mididings import *
config(
client_name='NanoSysEx',
in_ports=[
('Nano.In','24:0')
],
out_ports=[
('NanoOut')
],
)
run(
####### Nano Midi to MMC ########
Filter(CTRL) >>
CtrlFilter(41) >>
SysEx(F0 7F xx 06 02 F7) >>
Port('NanoOut')
)
so I'm probably doing something wrong there. Need to ask on mididings forum.
Thanks Rui!