Home

Awesome

Teensy midi looper

Join the chat at https://gitter.im/newdigate/teensy-midi-looper Travis CI status obsolete!

<img src="Software/docs/images/teensy-midi-looper-emulation2.gif" width="128px"/>

Microcontroller-based midi performance sequencer

prototype device, iteration 1

hardware

Teensy 3.6 microcontroller board by pjrc.com

<img src="https://raw.githubusercontent.com/newdigate/teensy-midi-looper/master/Hardware/png/Breadboard.layout.png" width="500px" title="minimal setup breadbord"/>

connections

// TFT
#define sclk 14  // SCLK can also use pin 13 (14 is compatibile with audio shield and teensy guitar audio shield
#define mosi 11  // MOSI can also use pin 7
#define cs   10  // CS & DC can use pins 2, 6, 9, 10, 15, 20, 21, 22, 23
#define dc   9   //  but certain pairs must NOT be used: 2+10, 6+9, 20+23, 21+22
#define rst  8   // RST can use any pin

// midi in/out (rx/tx)
#define midi_in_pin 1  // rx  
#define midi_out_pin 2 // tx

// rotary encoder
#define rotary_enc1   3   
#define rotary_enc2   4   
#define rotary_switch 5   

Status

The project is a work-in-progress in a very early stage of development; I have working prototype using breadboard, as diagram above, records successfully to smf midi file on sd card which can be read from midi players and daws.

Featurestatusnotes
Breadboard viewin progressUsing fritzing
PCBnot started
Enclosurenot starteddecide form factor

Sketches

record midi to SMF on SDworks (needs attention)compiles on:<ul><li>teensyduino</li><li>due</li><li>esp8266</li></ul>
read, play, loop SMF from SDin progress

Software development