CircuitPython version
Adafruit CircuitPython 9.2.0 on 2024-10-28; Waveshare ESP32-S3-Zero with ESP32S3
Code/REPL
import usb_hid, usb_midi
usb_hid.disable()
usb_midi.enable()
usb_midi.set_names(streaming_interface_name="new_streaming_interface_name", audio_control_interface_name="new_audio_control_interface_name", in_jack_name="new_in_jack_name", out_jack_name="new_out_jack_name")
Behavior
On my device, if I input this code in the boot.py file, it does indeed change the midi device name in the windows device manager. However, the device does not show up in windows midi software anymore.
If I comment out the line that starts with usb_midi.set_names, the midi device works again, with the default name (CircuitPython Audio).
I'm using the example code from #9146
Description
No response
Additional information
No response