-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arduino_midi not recognized in Windows #42
Comments
I should add that the Hauptwerk developer also added that his code does nothing other than call the Windows functions to confirm the presence of a Midi device i.e. it doesn't probe the device with SysEx messages (for example) |
I can confirm that midiInGetNumDevs() returns 0 in a system with an arduino_midi being shown as a Midi device in device manager. |
Anyone know how midiInGetNumDevs() figures out whether a USB Audio device is a Midi one to list or not ? |
I have arduino Uno and i use Flip for put MocoLufa Usb/Midi switchable with 4-6 ISP pin, and input midi is recognized in Windows 7 64 from all audio programs. |
I have an arduino mega2560 that I've programmed with hiduino. On the face of it, all works well. On linux kmidimon shows arduino_midi as a device and correctly shows the NoteOn/NoteOff messages I'm sending (this is a Midi output only application).
On Windows, the device shows up in "devices and printers" as an Audio Midi HID device, and Hairless Midi will try to route the output of arduino_midi back to a serial port, showing NoteOn/Note Off mesages if I let it (not that it would be at all useful, but shows that a windows program is able to access the device).
The application I'm trying to use is Hauptwerk. This refuses to recognize the arduino_midi, but shows other USB midi (commercial) devices. I've looked long and hard at device properties, comparing the commercial device and the arduino, and I can't see anything that wouldn't be expected from the two devices not being able to occupy exactly the same spot in the USB hierarchy.
I've been in touch with the Hauptwerk developer, who can't (for fairly obvious reasons) give much practical help debugging the issue. What he did note is that Hauptwerk uses the windows functions midiInGetNumDevs() and midiInGetDevCapsW to enumerate Midi devices present in the system.
Is there any way that you can think of that arduino_midi could be shown as a Midi device in the Windows Control panel and yet not be enumerated by the above two functions ? Other than trying to write a windows app calling those functions, I'm at a loss for ideas. Any ideas helpful. Thanks
The text was updated successfully, but these errors were encountered: