Chordel
Chordel is a standalone synthesizer that is played using the Ableton Push 2.
Last Updated: March 27th, 2025.
Overview
I won't be going into much detail about aspects that are covered in depth in the Ableton Push 2 MIDI and Display Interface Manual. However, I will be talking about my overall approach, how the program produces sounds, and by far the most challenging aspect: how to display an image on the Push 2 display.
The program itself runs on the computer and communicates with the Ableton Push 2 over USB. To summarize, here's what it does:
- Receive pressed pads: Continuously read MIDI messages sent by the Push when pads are pressed.
- Update pad colors: This is done by sending MIDI messages to the Push.
- Play sounds: Synthesize sounds using TinySoundFont, a single-header synthesizer for SoundFonts.
- Update Push screen: Composite an image using Cairo, convert it to the Push screen format, and transmit it via USB.
Interesting Bits
I'm omitting details about points 1 and 2 – but TL;DR is: I'm using PortMIDI for the bi-directional MIDI communication with the Push through its "User Port".
How to Play Sounds
The application I’ve built is a standalone synthesizer, not a VST plugin. Unlike setups where MIDI events are sent to an external synthesizer to generate sound, this application handles sound generation directly. It uses SoundFonts to produce audio, with the core synthesis work handled by the TinySoundFont library by Bernhard Schelling. For playback of the resulting PCM data, I rely on SDL, which is also used for the application’s window rendering, input handling, and other system-level functionality.
This aspect of the application has been surprisingly straightforward:
- Find a nice SoundFont: I used musical-artifacts.com to find fonts I like.
- Tell TinySoundFont which SoundFont to use.
- Tell it which MIDI note to play.
- Write a callback that uses the retrieved PCM data and SDL to play the audio through the computer's audio device.
You can check out this example code from the TinySoundFont GitHub repository if you’re interested in the code. I basically did the same thing.
This has been simple to do because TinySoundFont is just a single file. No dependencies, it just works.
Displaying an Image on the Push Screen
The goal of this application is to help me learn and discover chords using the Push. I just want to play and have the Push tell me what I’m playing — it acts as an assistant. Since I was aiming to break away from the computer screen, it was important to display the chord information directly on the Push’s screen. While the software still runs on a computer, I don’t need to look at it — I can just close the lid and play.
Okay, on to the technical part: The most important thing to understand is that the Push doesn’t offer a drawing API. Its display behaves like a standard screen expecting raw pixel data in a specific format, and all communication happens over USB. The display runs at 60 FPS, so updates need to be sent quickly. My implementation is very loosely based on this example provided by Ableton, but my code is written in plain C rather than C++, and I’m also not using JUCE.
This is how it works:
- Composite an image using Cairo. This creates an image like the one up top, in RGB24 format.
- Transform the pixel data into a form that the Push screen expects. This is explained in detail here.
- Send the pixel data to the Push screen via USB. This turned out to be by far the hardest part for me, as I hadn’t worked with USB communication before. I’m using the async API of libusb to send pixel data as quickly as possible.
Wrap up
The code is still in a prototype state, and for now, I’m not planning to open source it. That said, if there’s interest, I’d definitely consider it. This was also my first real application written in C, and along the way I learned a lot — especially about memory management, memory leaks (naturally), and how to track them down and fix them. Talking about this is due another time though.
If there are questions about anything I’ve mentioned here but didn’t cover in detail, feel free to reach out on Bluesky or Mastodon.