THis project is organized as follows:
firmware/
: main firmware codeinterface/
: code for the web interfaceThis is currently being switched over to work with the Raspberry Pi Pico. To set it up in the Arduino IDE, follow this guide. You will probably have to hold down the BOOTSEL button while plugging in the Pico to get it into bootloader mode for the first time. Pay attention to these upload settings:
.
Make sure the selected port matches the port that the Pico is connected to.
Required libraries:
https://electronics.stackexchange.com/questions/623026/problem-working-with-midi-on-hardware-serial-port-on-raspberry-pi-pico-2040
This will have to use WebMIDI to communicate with the Arduino.
A good first step for this is to get a list of MIDI devices. I want to do this in React.
See this page for a good reference on MIDI messages.
The manufacturer ID for the USB MIDI SysEx messages is 0x00 0x53 0x4D
. The 0x00
indicates that the message has a vendor ID, and the 0x53 0x4D
is the ASCII representation of “SM”. This is a unique identifier for the Stegosaurus MIDI controller (I think it is unique). So, if you see a message with this ID, it is likely from the Stegosaurus. The rest of the message is the actual data.
To program the controller behavior, the interface will send a SysEx message with the manufacturer ID, followed by the command byte, and then the data. Keep in mind that the SysEx message maximum length is 128 bytes. This is changable here, but I don’t think that any of the messages will be even close to that length.
This SysEx message will be used to change the behavior of the controller.
Byte | Value |
---|---|
0 | Left nybble denotes the operation. 0x0 for modify preset operation. Right nybble denotes whether or not to save to EEPROM or not. 0x0 for no, 0x1 for yes. For example, 0x01 for modify preset and write to EEPROM; 0x00 for modify preset but not write to EEPROM (probably for debugging). |
1 | Preset (allow up to 0-127) |
2 | Only using the right nybble. Trigger on enter preset, exit preset, or switch press number (0x0 to 0x03 switch number, 0xE for on preset entry, 0xF for on preset exit). |
3 | Storage location for preset (1 byte would allow 256 different locations per byte, but that’s too many - I think up to 64 is the maximum that would make sense) |
4 | Message type (cc/pc), channel |
5 | Message number |
6 | Message value (if needed, for cc message) |
[DEPRECATED]
This is currently built on a Teensy 4.0. It should also work with any ATMega32U4 board, such as the Arduino Micro, HOWEVER, the USB name on the Micro will show up as just “Arduino Micro”. The firmware is written in C++ and uses the Arduino framework. Make sure you have the arduino IDE installed, and the Teensyduino add-on. See the Teensyduino page for more information. The following libraries are required:
You’ll need to change the USB type to “Serial + MIDI” in the Arduino IDE. This is done by going to Tools > USB Type
and selecting “Serial + MIDI”.