Problem with Arduino Nano 33 IoT #1010
aregkarapetyan
started this conversation in
General
Replies: 1 comment 2 replies
-
#include <Control_Surface.h>
// Make sure we're not silently falling back to MIDI over Serial
#ifdef CS_USB_MIDI_NOT_SUPPORTED
#error "Actual MIDI USB backend required"
#endif
USBMIDI_Interface midi;
template <class> struct PrintType;
PrintType<decltype(midi.backend)> print_type; |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to send a MIDI message over the USB using the example from the user manual. I am observing the received message in the DAW (Ableton in my case). It works for Nano 33 BLE, and I can hear the notes in the DAW. However, it doesn't work for Nano 33 IoT. It is not recognized as a MIDI device in the DAW at all.
Is there anything I can try to make it work with the IoT board?
Beta Was this translation helpful? Give feedback.
All reactions