A basic version of Breakout the 1976 video game for the Novation Launchpad Pro.
The project was created as part of an inhouse hackathon at Agile Mobile Revolution (AMR) by 7P in November 2019.
You may want to watch a live-stream of its creation on Twitch but be aware it's ~20h long XD.
Beware that this firmware is ONLY available for and compatible with the Launchpad PRO!
These instructions will get your copy of the project up and running on your local machine.
The project was developed on macOS. While it's available for more than one platform I will not describe setup on other platforms. For more details on that please refer to the firmware's readme.
Install Xcode and a SysEx Librarian.
In Terminal.app run:
# dependencies for compiling firmware
brew tap PX4/homebrew-px4
brew install gcc-arm-none-eabi
# clone repo and submodules (!)
git clone --recursive https://github.com/ctreffs/launchpad-breakout.git
cd launchpad-breakout
# build a firmware sysex from code and copy it to sysex folder
make setupSysex
Makefile # Convenience functions to build and clean firmware.
README.md # This file.
launchpad-pro/ # Submodule with firmware code + project files.
sysex/ # Folder with Launchpad firmware sysEx + custom firmware sysEx;
# point your SysEx Librarian working dir to this folder.
To get Breakout to run on your Launchpad Pro you have to patch the firmware with the custom firmware built by this project.
- Connect your Launchpad Pro to your Mac.
- Edit the firmware using the Simulator project in Xcode located at
<PROJECTDIR>/launchpad-pro/tools/osx/simulator.xcodeproj/
or runmake openXcode
. (You may as well just use the latest built firmware version in the sysex directory). - Compile the firmware and copy the compiled sysEx file to the sysex folder (
make setupSysex
). - Start your Launchpad Pro in update mode:
- Turn Launchpad off.
- Hold down setup button while turning Launchpad back on.
- You will see a static set of colored LEDs on the pad.
- Open SysEx Librarian and select
Launchpad Pro
asDestination
- In SysEx Librarian add
launchpad_pro.syx
from the sysex directory and select it. - Transfer sysEx to Launchpad by pressing
Play
. - The Launchpad Pro should display
Updating ...
running horizontally over the device. - The Launchpad Pro will restart after the update automatically.
- You should see Breakout running on your device.
For more details on how to patch a firmware onto Launchpad Pro and reset it to the official firmware please refer to the firmware readme.
Original firmware by https://github.com/dvhdr/launchpad-pro.
Updated fork used with this project by https://github.com/onionpsy/launchpad-pro.
This project is licensed under the 3-Clause BSD License - see the LICENSE file for details.
- dvhdr/launchpad-pro licensed under 3-clause BSD license
- onionpsy/launchpad-pro licensed under 3-clause BSD license