Open
Description
I have a Xiao RP2040 working in that the device can be recognized as a MIDI device but I'm lost as to how to send data.
Is there any documentation for USB-MIDI?
I have asked this question in TinyGoMIDI, a Google Group I've started, and the code I have at the moment is there:
https://groups.google.com/g/tinygomidi/c/s8P8fqm3BaE
package main
import (
"machine"
"machine/usb"
)
func init() {
machine.EnableMIDI(midiTx, midiRx, midiSetup)
}
func main() {
}
func midiRx(bs []byte) {
}
func midiTx() {
}
func midiSetup(sup usb.Setup) bool {
return true
}