OpenDeck is a platform for building MIDI controllers. It is a firmware running on various boards which transforms them into class-compliant USB MIDI devices, making them compatible with any MIDI software on any operating system. OpenDeck is designed to solve two problems when building a MIDI controller:
- Coding - there is no need to code anything in order to make changes to the controller or to make it work
- Making the controller behave the way you want it to - the firmware supports huge number of configurable parameters, all configurable in a Web browser
Solving this two goals means you can forget about implementation details and focus on having your custom controller built as fast as possible.
Click the image below for a demo video of the OpenDeck configurator
Configurator is available either online or offline.
Some of the controllers built with OpenDeck
The following components are supported:
- Buttons
- Encoders
- LEDs (single color or RGB)
- Potentiometers
- FSRs (force-sensitive resistors)
- LCD/OLED displays
- Touchscreen displays (Nextion)
OpenDeck supports sending of both 7-bit and 14-bit Non-Registered Part Numbers (NRPN), latching messages on buttons, various encoding modes for quadrature encoders, LED control using MIDI In, configurable MIDI channels for each component individually, Bluetooth MIDI etc. Full list of supported features can be found here.
If the feature you want isn't supported yet, don't feel discouraged. Open up a discussion thread and let's talk about it.
Currently, there are two official boards: M and L variants. "M" stands for "middle" and "L" for "large". M board is currently out of production, but the L board is available on Tindie store.
This board is based on Raspberry Pi RP2040 microcontroller and features the following:
- 64 digital inputs
- 48 digital outputs
- 32 analog inputs
- DIN MIDI
- USB MIDI (USB C)
- Connector for touchscreen
- Connector for I2C OLED display
This board is based on Raspberry Pi RP2040 microcontroller and features the following:
- 128 digital inputs
- 64 digital outputs
- 64 analog inputs
- DIN MIDI
- USB MIDI (USB C)
- Connector for touchscreen
- Connector for I2C OLED display
- Additional connectors with 3V+GND and 5V+GND connections
The firmware supports various other boards, both small and large:
- Adafruit ItsyBitsy nRF52840 Express
- Arduino Mega2560
- Arduino Mega2560 Pro Mini / Meduino
- Arduino Nano 33 BLE
- Arduino Nano 33 BLE Sense
- Mux Shield v2 with Arduino Mega2560
- nRF52840 DK
- Raspberry Pi Pico
- Seeed Studio XIAO nRF52840
- Seeed Studio XIAO RP2040
- STM32F401CC Black Pill
- STM32F401CE Black Pill
- STM32F411 Black Pill [1] (Adafruit)
- STM32F4 Discovery (Mouser / Digikey)
- STM32F4VE (eBay)
- Teensy++ 2.0
- TPyBoard (PyBoard clone) (eBay)
- Waveshare Core405R
- Waveshare Core407I
- Waveshare Core407V
- WeAct Raspberry Pi Pico
[1] WeAct (developer of Black Pill boards) currently sells Black Pill board with AT32F403ACGU7 MCU instead of STM32F411. This variant isn't supported!
Some of the supported boards
For more details on supported boards, check the wiki page. A page with instructions on how to flash OpenDeck firmware to supported boards is also available. Support for custom boards can be easily added using YAML descriptors.
Available on dedicated Wiki section.
Need help? Want to show off your OpenDeck based builds? Head over to Discussions!
- Hardware MIDI source code based on Arduino MIDI library v5.0.2 by Francois Best.
- USB MIDI source code based on LUFA USB framework by Dean Camera.
Most of the code is available under Apache Licence v2.0, with the following exceptions:
modules
:avr-libstdcpp
: GNU GPL v3 or later with GCC Runtime Library Exception 3.1core
: MITdbms
: MITEmuEEPROM
: MITlufa
: Modified MIT, seemodules/core/modules/lufa/LUFA/Licence.txt
for detailsmidi
: MITsysex
: MITu8g2
: Two-clause BSDunity
: MITtinyusb
: MIT, but many modules it uses are individually licenced, check for more details