Skip to content

USB-MIDI documentation? #3233

Open
Open
@davidhtims

Description

@davidhtims

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
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    docsDocumentation needed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions