Prop>Midi data out via USB?
I want to experiment with a drum trigger device for fun, the idea is to connect a number of inputs to a Prop and output midi signals via USB (FT232) to a sequencer. I see a Midi In obj, is there anything here for some Spin Midi out snippets?

Comments
USB MIDI Keyboards and Expanders support a special MIDI/Audio Class of the USB specification, which is recognized by Windows and other OSes automatically.
Andy
You could could also this one:
http://projectgus.github.io/hairless-midiserial/
note that unlike the one from Roland, to use it from within your MIDI apps you'll also need to install a MIDI loopback device (like "loopMIDI", "loopbe" or "MIDI Yoke").
CON _clkmode = xtal1 + pll16x _xinfreq = 5_000_000 VAR OBJ ser :"FullDuplexSerial4Port" PUB INIT StartSerial 'initial baud and port set up TestMidi PUB StartSerial 'PUB AddPort(port,rxpin,txpin,ctspin,rtspin,rtsthreshold,mode,baudrate) Ser.init Ser.AddPort(0,31, 30,-1,-1,0,0, 115200) ' baud must match Hairless serial midi setting, default is 115200 Ser.Start PUB TestMidi repeat ser.tx(0, %1001_0000) ' note on_Channel ser.tx(0, %0_001_1111) ' note number ser.tx(0, %0_111_1111) ' velocity waitcnt(80_000_000 + cnt) ser.tx(0, %1000_0000) ' note off_Channel ser.tx(0, %0_001_1111) ' note number ser.tx(0, %0_111_1111) ' velocity waitcnt(80_000_000 + cnt)