welcome: please sign in
location: Diff for "Repatcher"
Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2011-10-10 16:14:25
Size: 1495
Editor: guest
Comment:
Revision 4 as of 2011-12-03 19:49:18
Size: 2299
Editor: guest
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
The Repatcher Shield gives you a hardware interface to control your Puredata and MAX/MSP patches as if they were old-skool analog modular synthesizers. The Repatcher Shield attaches to an arduino compatible board, and gives you 6 potentiometers for 10b data input, and a 6 x 6 patchbay matrix. The data streams over usb, and easily integrates into MAX/MSP and Puredata via a special patch you can download here.
Line 6: Line 7:
==== Setup Instructions ====
Line 7: Line 9:
==== Programming Examples ====
The Audio Codec Shield can be used with any microcontroller, but we have layed it out for the Arduino and Maple to get more people involved in making interesting musical applications. To help promote this, we have also made a number of example sketches and libraries to get you started quickly. The main programming structure follows that of the MICrODEC: the program initializes the codec, and then waits in the main loop until it is interrupted by the codec, at which time it executes your code in the interrupt service routine. This gives the best audio quality, as it ensures that nothing else will delay the processing of your audio data. But, this also means that all of your functions must fit within the time allotted between audio samples, and other functions that rely on interrupts can't be used (like ''delay()''). Different programming structures can be used, but this one is the easiest and gives the best results.
To use the Repatcher, first be sure that you have the appropriate USB drivers installed for your Arduino board. These come with the Arduino programming environment and must be loaded for your Arduino to work. Next, load the Arduino sketch linked below, and attach the Repatcher shield. Finally, download the appropriate (PureData or MAX/MSP) Repatcher patches and place them in the same folder you will executing out of.

 * [[attachment:repatcher.pde|Arduino Repatcher sketch]]
 * [[attachment:repatcher.pd|PureData Repatcher patch]]
 * [[attachment:test.pd|PureData Repatcher test sketch]]

==== Use Instructions ====

There are 6 inputs and 12 outputs on the Repatcher object. The 6 audio inputs on the top send their signals to the corresponding 6 OUT's on the Repatcher board. These signals can then be wired and sent to the 6 IN's on the board, which correspond to the first 6 audio out's on the Repatcher object. Multiple OUT's can be wired to a single IN, and all of the OUT's will sum at this junction. Do '''not''' wire OUT's to other OUT's, or IN's to other IN's, as this will just confuse the matrix. The final 6 outputs on the Repatcher object are control out's for the 6 MOD potentiometers on the Repatcher board. These are sequential, 0 to 5, from left to right, just like the IN's and OUT's.

Repatcher

About the Repatcher Shield

The Repatcher Shield gives you a hardware interface to control your Puredata and MAX/MSP patches as if they were old-skool analog modular synthesizers. The Repatcher Shield attaches to an arduino compatible board, and gives you 6 potentiometers for 10b data input, and a 6 x 6 patchbay matrix. The data streams over usb, and easily integrates into MAX/MSP and Puredata via a special patch you can download here.

Setup Instructions

To use the Repatcher, first be sure that you have the appropriate USB drivers installed for your Arduino board. These come with the Arduino programming environment and must be loaded for your Arduino to work. Next, load the Arduino sketch linked below, and attach the Repatcher shield. Finally, download the appropriate (PureData or MAX/MSP) Repatcher patches and place them in the same folder you will executing out of.

Use Instructions

There are 6 inputs and 12 outputs on the Repatcher object. The 6 audio inputs on the top send their signals to the corresponding 6 OUT's on the Repatcher board. These signals can then be wired and sent to the 6 IN's on the board, which correspond to the first 6 audio out's on the Repatcher object. Multiple OUT's can be wired to a single IN, and all of the OUT's will sum at this junction. Do not wire OUT's to other OUT's, or IN's to other IN's, as this will just confuse the matrix. The final 6 outputs on the Repatcher object are control out's for the 6 MOD potentiometers on the Repatcher board. These are sequential, 0 to 5, from left to right, just like the IN's and OUT's.

Documentation

Files: Version 1.0

Repatcher (last edited 2012-02-07 17:38:17 by guest)