Overview
You can turn an old Guitar Hero accessory into a USB MIDI controller for your synthesizer! Wii accessories use I2C to send all of their data, so we'll couple the Guitar Hero controller with a STEMMA QT Nunchuck Breakout and an Adafruit QT Py to read all the fret buttons, whammy bar, strum bar, and joystick data.
You'll be able to send MIDI notes, chords, octave changes, whammy bar pitch bends, and joystick CC messages to any software synth or a USB MIDI host-capable synthesizer.
Wii Guitar Hero Controller
You have one in your closet. If not, ~$30 on eBay, less at a thrift shop.
Page last edited March 08, 2024
Text editor powered by tinymce.
USB MIDI Essentials
MIDI is a venerable protocol (dating back to 1983) that is used to communicate between synthesizers, controllers, sequencers, sample players, computers, mobile devices, drum machines, and other electronic music making devices.
MIDI Messages
A simple and very common use case is to have a controller, such as a piano-style keyboard, send Note On and Note Off data to a music synthesizer (including software synths on your computer or mobile device).
Press a key and a message is sent telling the synth to play a specific musical note. Release the key and a message is sent to the synthesizer telling it to stop playing that note.
Getting a bit fancier than simple on/off messages, MIDI can also be used to send "continuous controller" CC messages, typically the result of turning a knob or pushing a slider on the keyboard controller. These can be used to sweep through the cuttoff frequency of a low pass filter, or modulate a tremolo, and many, many other parameters.
A similar scheme is also used to send pitch bend info -- often represented by a pitch bend wheel on the left side of a MIDI keyboard.
USB MIDI uses the same message protocol as classic MIDI, but does so over a USB host/device transport.
This makes it very simple to plug MIDI devices/controllers into computers and iOS devices, which act as the MIDI host. This is great, because it means you can control software synthesizers using something nicer than a computer keyboard!
Wii Guitar Hero Controller MIDI
On its own, the Wii Guitar Hero controller sends analog signals via I2C for all of its seven buttons, strum bar buttons, x/y joystick, and whammy bar. We'll use the Wii Nunchuck breakout adapter with the QT Py microcontroller to convert those I2C messages into MIDI notes, CC messages, and pitch bend from the whammy bar.
With the QT Py plugged into your computer or iOS device via the USB-Lightning adapter, you'll be able to play any software synth with your Guitar Hero controller!
Synthesizers
Nearly any software synth (or DAW (digital audio workstation) you find will allow you to use USB MIDI to control the notes, pitch bend, and CC input. Here are some good ones to try:
Linux / Windows / mac os Â
free open source      Â
Chrome Web Browser Â
- Viktor NV-1Â https://nicroto.github.io/viktor/ Â Â
- Juno-106.js  http://juno-106.js.org/
iOSÂ Â
free open source      Â
- AudioKit Synth One (iPad only) Â Â Â Â Â
free      Â
- GarageBand
- DRC Polyphonic Synth by Imaginado (iPhone and iPad)     Â
Page last edited March 08, 2024
Text editor powered by tinymce.
Hook Up the Controller
Thanks to the Wii Accessory plug on the controller, we can make all of our connections without disassembling the guitar. The plug hooks up with the Wii Nunchuck breakout adapter very simply!
Plug Things In to Other Things
Here's all we need to connect:
- Nunchuck adapter to QT Py with a STEMMA QT cable
- Wii controller Accessory Plug to Nunchuck adapter (be sure to follow the "Notch Up" directions
- QT Py to computer with USB cable
If you want to keep it super simple, this is all you need to do. Just push the parts into the empty Wiimote slot and you're done!
Fancy Mode
If you want to get a bit fancy with it, you can create a small notch in the access panel on the back of the guitar.
Open the access panel, then mark the door where you want to file out a notch for the USB cable.
Use a round file (or utility knife, small saw, and sandpaper, etc.) to create the notch.
Plug the USB cable into the QT Py and then close the access panel.
You're all set!
Page last edited March 08, 2024
Text editor powered by tinymce.
Code the Guitar Hero MIDI Controller
In order to make it simple to get up and running with your Guitar Hero MIDI Controller with no programming required, we've created a drag-and-drop firmware you can use.
If you're just getting started with your QT Py, there is lots more info here in the main Learn Guide!
Download
First, download the firmware file linked in the button below and save it to your computer hard drive somewhere you'll be able to find it, such as your Downloads folder.
Install the Firmware
Plug your QT Py into your computer with a good quality, data capable USB cable. Life is too short to go through the pain of accidentally using a power-only USB cable, so please round up any you own, cut them in half, travel to a distant land, bury them, and dance on their grave.
Bootloader Mode
Now, we'll put the QT Py into "bootloader" mode. In this mode it will appear as a USB drive on your computer and will be ready to receive a new .uf2 firmware file. Double-click the reset button on the top side of the board, next to the STEMMA QT connector port.
Once you have double-clicked the reset button, the indicator LED will turn green. You'll notice a new USB drive appear on your computer named QTPY_BOOT, this is the bootloader USB storage built right into the QT Py. It is now ready to receive the firmware file.
Drag and Drop
Now, drag the Guitar_Hero_MIDI_QTPy.UF2Â file onto the QTPY_BOOT drive. The file will copy over in a few seconds and then the QT Py will automatically restart itself (you'll see the QTPY_BOOT drive disappear, don't worry, this is normal!). The status LED will turn off, indicating regular operation mode.
You've updated the firmware and you're ready to play!
Test MIDI Output
You can test to see that your QT Py is outputting MIDI signals properly by using a MIDI utility. These will report all activity coming from any MIDI controller plugged into your system. Here are some to try:
- MIDI Monitor for mac os
- MIDI-OX for Windows
- MIDI Wrench for iOS
- MIDI Scope for Android
- KMidimon for Linux
- Web MIDI Monitor for Chrome browser
Customize It
If you'd like to modify or customize your code, you can download the Arduino code linked below and use it along with the Arduino IDE. Then, you'll flash your QT Py with the updated firmware using the Arduino IDE Upload button.
// SPDX-FileCopyrightText: 2021 John Park for Adafruit Industries
//
// SPDX-License-Identifier: MIT
//Wii Guitar Hero MIDI Controller
// by John Park for Adafruit Industries
#include <WiiChuck.h>
#include <Adafruit_TinyUSB.h>
#include <MIDI.h>
Accessory guitar;
Adafruit_USBD_MIDI usb_midi;
MIDI_CREATE_INSTANCE(Adafruit_USBD_MIDI, usb_midi, MIDI);
int MIDI_OUT_CH = 1; // pick your midi output channel here
bool DEBUG = 0; // set to 1 to use serial monitor to check out controller values
int whammyBar;
int joyX;
int joyY;
int minusButton; // drop an octave w each press
int plusButton; // up and octave w each press
int strumDown;
int strumUp;
int fretButtons[5];
bool minusButtonOn = 0;
bool plusButtonOn = 0;
bool strumDownOn = 0;
bool strumUpOn = 0;
bool fretButtonOn[] = {0, 0, 0, 0, 0};
int octave = 12; // note offset value, used to change octaves
int strumDownChord[] = {36, 40, 43, 45}; //all note values will be offset by octave value
int strumUpChord[] = {36, 41, 43, 45} ;
int fretNotes[] = {24, 26, 28, 29, 31};
int lastWhammy = 16; // Use the resting state value of your whammy bar
int whammyPitchVal = 8192; // resting position of pitchwheel
int lastJoyX = 223; // resting value of joyX
int joyXCCNum = 71; // VCF or whatever you assign in synth software
int joyXCCVal = 0;
int lastJoyY = 224; // resting value of joyY
int joyYCCNum = 72; // VCA
int joyYCCVal = 0;
void setup() {
Serial.begin(115200);
MIDI.begin(MIDI_CHANNEL_OMNI);
guitar.begin();
guitar.type = GuitarHeroController;
}
void loop() {
guitar.readData(); // Read inputs and update maps
fretButtons[0] = guitar.values[10]; // green
fretButtons[1] = guitar.values[11]; // red
fretButtons[2] = guitar.values[12]; // yellow
fretButtons[3] = guitar.values[13]; //blue
fretButtons[4] = guitar.values[14]; // orange
minusButton = guitar.values[6];
plusButton = guitar.values[16];
strumDown = guitar.values[7];
strumUp = guitar.values[7];
whammyBar = guitar.values[0];
joyX = guitar.values[20];
joyY = guitar.values[21];
for(int i=0;i<5;i++){
if(fretButtons[i]==255 && fretButtonOn[i]==0){
MIDI.sendNoteOn(fretNotes[i]+octave, 127, MIDI_OUT_CH);
fretButtonOn[i] = 1;}
if(fretButtons[i]==0 && fretButtonOn[i]==1){
MIDI.sendNoteOff(fretNotes[i]+octave, 0, MIDI_OUT_CH);
fretButtonOn[i] = 0;}
}
if(whammyBar!=lastWhammy){
whammyPitchVal=map(whammyBar, 15, 26, 8192, 16383); // remap to pitch value range, two semitones here
MIDI.sendPitchBend(whammyPitchVal, MIDI_OUT_CH);
lastWhammy=whammyBar;
}
if(joyX!=lastJoyX){
joyXCCVal=map(joyX, 190, 255, 0, 127); // remap to bigger range
MIDI.sendControlChange(joyXCCNum, joyXCCVal, MIDI_OUT_CH);
lastJoyX=joyX;
}
if(joyY!=lastJoyY){
joyYCCVal=map(joyY, 190, 255, 0, 127); // remap to bigger range
MIDI.sendControlChange(joyYCCNum, joyYCCVal, MIDI_OUT_CH);
lastJoyY=joyY;
}
if(minusButton==0 && minusButtonOn==0){
octave = constrain((octave - 12), 0, 108);
minusButtonOn = 1;}
if(minusButton==128 && minusButtonOn==1){
minusButtonOn = 0;}
if(plusButton==255 && plusButtonOn==0){
octave = constrain((octave + 12), 0, 108);
plusButtonOn = 1;}
if(plusButton==0 && plusButtonOn==1){
plusButtonOn = 0;}
if(strumDown==0 && strumDownOn==0){
for(int c=0; c<4; c++){
MIDI.sendNoteOn(strumDownChord[c]+octave, 127, MIDI_OUT_CH);}
strumDownOn = 1;}
if(strumDown==128 && strumDownOn==1){
for(int c=0; c<4; c++){
MIDI.sendNoteOff(strumDownChord[c]+octave, 0, MIDI_OUT_CH);}
strumDownOn = 0;}
if(strumUp==255 && strumUpOn==0){
for(int c=0; c<4; c++){
MIDI.sendNoteOn(strumUpChord[c]+octave, 127, MIDI_OUT_CH);}
strumUpOn = 1;}
if(strumUp==128 && strumUpOn==1){
for(int c=0; c<4; c++){
MIDI.sendNoteOff(strumUpChord[c]+octave, 0, MIDI_OUT_CH);}
strumUpOn = 0;}
delay(5);
if(DEBUG){
Serial.println("-------------------------------------------");
guitar.printInputs();
for (int i = 0; i < WII_VALUES_ARRAY_SIZE+3; i++) {
Serial.println(
"Controller Val " + String(i) + " = "
+ String((uint8_t) guitar.values[i]));
}
delay(50); // keeps the terminal from flooding
}
}
Page last edited March 08, 2024
Text editor powered by tinymce.