Skip to content

Latest commit

 

History

33 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Launchpad Pro Circuit

Custom Novation Launchpad Pro firmware for using a Novation Circuit's sampler as a midi instrument.

The Circuit's sampler supports changing a sample's pitch by using the first control knob. It also allows this to be automated by the sampler, unlocking four additional melodical instruments on top of the two synths. Getting the pitch right, however, is really hard when doing it by hand, limiting its use.

This project aims to improve this by converting the Launchpad Pro into a control surface for the Circuit, allowing you to play the sampler as if it were another instrument. The tool is only designed for an original version Launchpad Pro and the original Circuit.

Building and Flashing

The Launchpad Pro runs an ARM Cortex M3 processor, so you need a cross compiler to build the firmware. The easiest way, is using the provided docker image:

docker build . -t launchpad-pro-circuit
docker run -v $(pwd):/opt/sources launchpad-pro-circuit make

If you have the GCC ARM toolchain installed, you should be able to directly run make in the project's root.

Afterwards, you should be left with a launchpad_pro.syx file in the build directory. You'll need a sysex tool to upload it to the device. On linux, I use amidi, from the ALSA project.

To flash the device, first put it in bootloader mode by holding the "Setup" button while connecting the host. Then, use:

amidi --list-devices

to get the device id of the Launchpad Pro. Send the firmware with:

amidi -p hw:3,0,0 -s build/launchpad_pro.syx

where hw:3,0,0 is the device id returned by the first command.

The original firmware bundled by Novation is included in the resources/ directory. You can flash this file to get your Launchpad to its factory state.

License

This project is based on the open launchpad firmware released by Novation. It is released under the same 3-clase BSD license:

Copyright (c) 2015, Focusrite Audio Engineering Ltd.
Copyright (c) 2025, Antonio de Haro
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

* Neither the name of Focusrite Audio Engineering Ltd., nor the names of its
  contributors may be used to endorse or promote products derived from
  this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

Custom Novation Launchpad Pro firmware for using a Novation Circuit's sampler as a midi instrument

Resources

Stars

1 star

Watchers

1 watching

Forks

Contributors

Languages