<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Charles R. Thompson</title>
	<atom:link href="http://charlesrthompson.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://charlesrthompson.wordpress.com</link>
	<description>Artist, Musician, Accidental Alchemist</description>
	<lastBuildDate>Mon, 05 Dec 2011 01:25:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='charlesrthompson.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/5861f3e47edb54f9d09bdbe525e38033?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Charles R. Thompson</title>
		<link>http://charlesrthompson.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://charlesrthompson.wordpress.com/osd.xml" title="Charles R. Thompson" />
	<atom:link rel='hub' href='http://charlesrthompson.wordpress.com/?pushpress=hub'/>
		<item>
		<title>ColdFusion Permutation Generator</title>
		<link>http://charlesrthompson.wordpress.com/2011/12/04/coldfusion-permutation-generator/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/12/04/coldfusion-permutation-generator/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 01:25:14 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Permutations]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=255</guid>
		<description><![CDATA[Here&#8217;s a simple starter script for generating permutations in ColdFusion. I couldn&#8217;t easily find one online so I created this one based on a javascript version found over on Scriptar. Scriptar JS Permutation Generator ColdFusion CFSCRIPT version: &#60;cfscript&#62; permArr = []; usedChars = []; function permute(input) {   var i = 1;   var ch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=255&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple starter script for generating permutations in ColdFusion. I couldn&#8217;t easily find one online so I created this one based on a javascript version found over on Scriptar.</p>
<p><a title="Scriptar JS Permutation Generator" href="http://scriptar.com/JavaScript/permute.html" target="_blank">Scriptar JS Permutation Generator</a></p>
<p>ColdFusion CFSCRIPT version:</p>
<pre>&lt;cfscript&gt;
permArr = [];
usedChars = [];

function permute(input) {
  var i = 1;
  var ch = '';
  var chars = ListToArray(input);

  for (i = 1; i &lt; ArrayLen(chars) + 1; i++) {

    /* get and remove character at index "i" from char array */    
    ch = chars[i];
    ArrayDeleteAt(chars,i);

    /* add removed character to the end of used characters */   
    ArrayAppend(usedChars,ch);

    /* when there are no more characters left in char array to add, add used chars to list of permutations */
    if (ArrayLen(chars) eq 0){
        ArrayAppend(permArr,ArrayToList(usedChars));
    }

    /* send characters (minus the removed one from above) from char array to be permuted */
    permute(ArrayToList(chars));

    /* add removed character back into char array in original position */
    if (ArrayLen(chars) lt i){
      ArrayAppend(chars,ch);
    }else{
      ArrayInsertAt(chars,i,ch);
    }

    /* remove the last character used off the end of used characters array */
    ArrayDeleteAt(usedChars,ArrayLen(usedChars));  
  }
}

mylist = 'A,B,C';
permute(mylist);

WriteDump(permArr);

&lt;/cfscript&gt;</pre>
<p>Example Output</p>
<table>
<tbody>
<tr>
<th colspan="2">array</th>
</tr>
<tr>
<td>1</td>
<td>A,B,C</td>
</tr>
<tr>
<td>2</td>
<td>A,C,B</td>
</tr>
<tr>
<td>3</td>
<td>B,A,C</td>
</tr>
<tr>
<td>4</td>
<td>B,C,A</td>
</tr>
<tr>
<td>5</td>
<td>C,A,B</td>
</tr>
<tr>
<td>6</td>
<td>C,B,A</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=255&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/12/04/coldfusion-permutation-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>
	</item>
		<item>
		<title>Time in the Land of Odd</title>
		<link>http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 14:51:00 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Music Software]]></category>
		<category><![CDATA[Time Signatures]]></category>
		<category><![CDATA[5/4]]></category>
		<category><![CDATA[7/4]]></category>
		<category><![CDATA[Dave Brubeck]]></category>
		<category><![CDATA[Odd Time]]></category>
		<category><![CDATA[polyrhythms]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=251</guid>
		<description><![CDATA[Turkey is in the oven, family is still sleeping, and I have some time to kill before my day becomes a balancing act&#8230; and that&#8217;s what this timely post is all about. The balance of time. Spend enough time as a practicing musician and you&#8217;ll eventually start asking yourself if anyone you know, including yourself, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=251&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Turkey is in the oven, family is still sleeping, and I have some time to kill before my day becomes a balancing act&#8230; and that&#8217;s what this timely post is all about. The balance of time. Spend enough time as a practicing musician and you&#8217;ll eventually start asking yourself if anyone you know, including yourself, knows how to do anything besides count to the number 4. Ask a few more questions, do some digging, and you&#8217;ll drop down through the rabbit hole into the world of &#8216;odd&#8217; time signatures, polyrhythms, paradiddles, compound meter, and other time-twisting pleasures.</p>
<p>4/4 time is the de-facto standard for popular music. Sure 3/4 was popular back in the day (the day being oh some 100+ years ago) but 4/4 remains strong because it allows our minds to effortless glide through a piece of music on our base instincts. Left foot &#8211; right foot &#8211; left foot &#8211; right foot, tick &#8211; tock &#8211; tick &#8211; tock, wax on &#8211; wax off, etc. For the most part our western world is guided by the on-off switch and it takes quite a bit of effort to break this vicious cycle so we can explore other musical worlds.</p>
<p>When first delving into odd signatures&#8230; a phrase which I despise because it immediately casts the subject matter as less than acceptable&#8230; most people struggle with the overall mechanics of the count. It&#8217;s important to understand the counts and basic mechanics, but far more important to move beyond that as quickly as possible and develop a sense of &#8216;feel&#8217; to the meter. Just like with the practice of scales, one must make the practice musical in order to avoid rigidity (and being a bore.) Nobody wants to listen to you sing &#8220;One and Two and Three and Four and Five and&#8221; over and over.</p>
<p>So before we get into counts we should take five&#8230;</p>
<p><span style="text-align:center; display: block;"><a href="http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/"><img src="http://img.youtube.com/vi/BwNrmYRiX_o/2.jpg" alt="" /></a></span></p>
<p>Play this piece for anyone you know, including non-musicians, and they will almost immediately recognize it from TV or film&#8230; and be able to follow it. Well it&#8217;s 5/4 time. If odd signatures are generally considered too complex then how is this possible? Simply put, it&#8217;s not projected as a musical theory project, it&#8217;s feel and that is what connects with the listener. Now let&#8217;s have Brubeck hurt us a little&#8230;</p>
<p><span style="text-align:center; display: block;"><a href="http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/"><img src="http://img.youtube.com/vi/_yExwkQYcp0/2.jpg" alt="" /></a></span></p>
<p>When I first listened to Unsquare Dance I got angry because I couldn&#8217;t keep up&#8230; even with the intro primer handclaps I just got lost. It&#8217;s 7/4. I can follow it on feel, but deconstructing it seemed to take a Herculean effort on my part. I needed a way to increase my knowledge of odd time signatures which led me to Bounce Metronome.</p>
<p><a title="BounceMetronome" href="http://bouncemetronome.com/" target="_blank">Bounce Metronome is an awesome application for hearing and seeing complex time signatures including polyrhythms.</a></p>
<p>Check out this 5/4 visualization</p>
<p><span style="text-align:center; display: block;"><a href="http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/"><img src="http://img.youtube.com/vi/uEqSrJDx17A/2.jpg" alt="" /></a></span></p>
<p>Now how about a 5/4 over 4/4 polyrhythm?</p>
<p><span style="text-align:center; display: block;"><a href="http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/"><img src="http://img.youtube.com/vi/7cJVpF6cN7E/2.jpg" alt="" /></a></span></p>
<p>The visual and sound approach provided by this app is by far the best I have found for quickly learning the feel of time signatures. Within a short timeframe I was able to get over Unsquare Dance and even start developing that sense of anticipation in the alignment of polyrhythms. Go on and check it out&#8230; make the time.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=251&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/11/24/time-in-the-land-of-odd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>
	</item>
		<item>
		<title>LAN Based MIDI Solution</title>
		<link>http://charlesrthompson.wordpress.com/2011/11/23/lan-based-midi-solution/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/11/23/lan-based-midi-solution/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 00:49:12 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/2011/11/23/lan-based-midi-solution/</guid>
		<description><![CDATA[Recently I was considering purchasing a USB powered MIDI interface for my development/composition laptop. The idea here being that I would flop some 30+ foot long cables from the composition desk over to the recording desk and DAW. SoftSynths are ok but they often lack detail in harmonic overtones that will rear their nasty heads [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=249&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I was considering purchasing a USB powered MIDI interface for my development/composition laptop. The idea here being that I would flop some 30+ foot long cables from the composition desk over to the recording desk and DAW. SoftSynths are ok but they often lack detail in harmonic overtones that will rear their nasty heads when you start pushing performances through a more realistic set of samples. I&#8217;ve been working on a few things and just got tired of exporting MusicXML to the DAW for previews. I was looking for real-time.</p>
<p>For whatever reason (probably my reluctance to part with cash) I decided to look and see if anybody had virtualized MIDI over LAN. I remember Steinberg made some early attempts with this type of thing long ago for net jams and MIDI has skirted around a CAT5 type connection so surely somebody just got smart and decided to &#8216;packetize&#8217; the messages in a client/server app. Yes.. they did.</p>
<p><a title="rtpMIDI" href="http://www.tobias-erichsen.de/rtpMIDI.html" target="_blank">rtpMIDI is a really great little utility to have in your studio toolbox</a>.</p>
<p>In all fairness, Mac has had this for awhile but I&#8217;m still in PC world. It&#8217;s rare I find a PC based MIDI utility that actually works&#8230; that&#8217;s why I&#8217;m posting this. In a matter of minutes I was able to setup my DAW as a server and connect to it from the laptop client. Running Finale on the client machine I was generating live MIDI over the network to my Midex8 hooked up to a Yamaha P-60. The best part? The laptop was on a wireless connection so I can freely pop into the next room to sit on the couch and still listen to performances or even edit without having to switch back to localized SoftSynth sounds or go back in the studio.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=249&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/11/23/lan-based-midi-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>
	</item>
		<item>
		<title>Pedalboard Kick Test</title>
		<link>http://charlesrthompson.wordpress.com/2011/11/10/pedalboard-kick-test/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/11/10/pedalboard-kick-test/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 02:49:00 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Music Hardware and Software]]></category>
		<category><![CDATA[Amplitube]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[IK Multimedia]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Pedalboard]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=174</guid>
		<description><![CDATA[I was asked if there were any videos of the pedalboard in use. At the moment all I have is this older video of me noodling around with the system. The sound is from a room mic on the camera so it&#8217;s not the best quality but the video shows interaction between the board and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=174&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was asked if there were any videos of the pedalboard in use. At the moment all I have is this older video of me noodling around with the system. The sound is from a room mic on the camera so it&#8217;s not the best quality but the video shows interaction between the board and DAW/VST.</p>
<div id="v-q3ssKsbv-1" class="video-player" style="width:400px;height:224px">
<embed id="v-q3ssKsbv-1-video" src="http://s0.videopress.com/player.swf?v=1.03&amp;guid=q3ssKsbv&amp;isDynamicSeeking=true" type="application/x-shockwave-flash" width="400" height="224" title="Pedalboard Testing" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=174&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" /><div><a href="http://charlesrthompson.wordpress.com/2011/11/10/pedalboard-kick-test/"><img alt="Pedalboard Testing" src="http://videos.videopress.com/q3ssKsbv/pedalboard_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/11/10/pedalboard-kick-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
	<enclosure url="http://videos.videopress.com/q3ssKsbv/pedalboard_dvd.mp4" length="41072640" type="video/mp4" />

		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:group>
			<media:content url="http://videos.videopress.com/q3ssKsbv/pedalboard_dvd.mp4" fileSize="41072640" type="video/mp4" medium="video" bitrate="1528" isDefault="true" duration="210" width="640" height="360" />

			<media:content url="http://videos.videopress.com/q3ssKsbv/pedalboard_std.mp4" fileSize="21396480" type="video/mp4" medium="video" bitrate="796" isDefault="false" duration="210" width="400" height="224" />

			<media:content url="http://videos.videopress.com/q3ssKsbv/pedalboard_fmt1.ogv" fileSize="21396480" type="video/ogg" medium="video" bitrate="796" isDefault="false" duration="210" width="400" height="224" />

			<media:rating scheme="urn:mpaa">g</media:rating>
			<media:title type="plain">Pedalboard Testing</media:title>
			<media:description type="plain">First kicktests of the pedalboard with Presonus and IK Multimedia AmpliTube 3</media:description>
			<media:thumbnail url="http://videos.videopress.com/q3ssKsbv/pedalboard_scruberthumbnail_0.jpg" width="256" height="144" />
			<media:player url="http://s0.videopress.com/player.swf?v=1.03&#038;guid=q3ssKsbv&#038;isDynamicSeeking=true" width="400" height="225" />
		</media:group>
	</item>
		<item>
		<title>Life, Projects, and Randomized Music</title>
		<link>http://charlesrthompson.wordpress.com/2011/07/10/life-projects-and-randomized-music/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/07/10/life-projects-and-randomized-music/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 16:18:09 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Conjure]]></category>
		<category><![CDATA[Music Hardware and Software]]></category>
		<category><![CDATA[IK Multimedia]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Miroslav Philharmonik]]></category>
		<category><![CDATA[Mobius]]></category>
		<category><![CDATA[MusicXML]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=162</guid>
		<description><![CDATA[Since I finished up the initial pedalboard design my world has flipped, flopped, and spun in too many directions to count. A few short weeks ago my wife and I discovered we have a little one on the way. So all immediate plans to start recording have been put on hold while I prepare the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=162&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since I finished up the initial pedalboard design my world has flipped, flopped, and spun in too many directions to count. A few short weeks ago <a title="The Speckled Dog" href="http://thespeckleddog.blogspot.com/2011/07/oh-baby.html" target="_blank">my wife</a> and I discovered we have a little one on the way. So all immediate plans to start recording have been put on hold while I prepare the house for this exciting little addition. One nice side benefit to this is that I get to move the studio (again). I always meet this task with a certain level of excitement and dread. It&#8217;s great to have a new space, but that always brings weeks of tweaks and room arranging. Hopefully this will be the last move for awhile.</p>
<p>On the project front I&#8217;ve started plans for two new boards which will augment my guitar rig. I don&#8217;t want to get into the details of one because it is just a little too awesome and ear-popping to give away in words alone&#8230; so more to come there. The second of these new boards is pretty simple. I&#8217;ve been playing around with Mobius and live looping with Albeton Lite. It&#8217;s quite a different animal than studio recording but I&#8217;m having some fun so far. I&#8217;ll be building a special controller for Mobius based on what feels right once I get more familiar with the system.</p>
<p>Now on to Conjure&#8230; my other pet project. I&#8217;ve briefly talked about this with a few people on Facebook but the Conjure project is a music composition system I&#8217;ve been working on since about Feb of 2010 but is finally getting close to a useful beta. It&#8217;s a rather complicated long-term development project but essentially Conjure is a preference engine for producing MusicXML scores. The idea is that given enough information about music theory with a combination of personal music preferences the system can create root song structures. The intent here isn&#8217;t to create complete scores as much as serving as a virtual muse. Going through the system has given me a great opportunity to relearn alot of music theory knowledge that&#8217;s been lost over the years. At this point Conjure has awareness of about 85 scales and some 60 odd chord structures and how they relate to all the standard western music keys. There is a title generation system, ensemble assembly function, GM MIDI database, drumkit constructor&#8230; and hordes of other tables cobbled together for one reason or another. Development has primary settled in with ColdFusion as the web services provider and a mix of XSL/XML/DHTML and possibly Flex for an alternative interface. The past two weeks have been consumed with providing Conjure information about song structures while I&#8217;ve just recently started refining the music key/scale selection criteria to introduce harmony and chord progressions (which will then be coupled with the structures.)</p>
<p>Here is an early twiddling from Conjure months ago when it was locked down to a single key but allowed to roam freely among orchestra instruments from <a title="Miroslav Philharmonik" href="http://www.ikmultimedia.com/philharmonik/features/" target="_blank">IK Multimedia&#8217;s Miroslav Philharmonik</a> VST plug in.</p>
<span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fcharlesrthompson.files.wordpress.com%2F2011%2F07%2Forc350.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /><param name='wmode' value='opaque' /></object></p></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=162&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/07/10/life-projects-and-randomized-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/07/orc350.mp3" medium="audio">
			<media:player url="http://charlesrthompson.wordpress.com/wp-content/plugins/audio-player/player.swf?soundFile=http://charlesrthompson.files.wordpress.com/2011/07/orc350.mp3" />
		</media:content>
	</item>
		<item>
		<title>Global MIDI Controls and AmpliTube 3.5</title>
		<link>http://charlesrthompson.wordpress.com/2011/06/26/global-midi-controls-and-amplitube-3-5/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/06/26/global-midi-controls-and-amplitube-3-5/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 20:11:34 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Amplitube]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[IK Multimedia]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Pedalboard]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=156</guid>
		<description><![CDATA[So it&#8217;s been over a week since I posted about AmpliTube 3.5 and MIDI control. I had planned to post more sooner but my personal and professional to-do list just never stops. I wanted to do a little writeup on single-source multi-target control of AT3.5 (next post or so) but got a little distracted by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=156&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been over a week since I posted about AmpliTube 3.5 and MIDI control. I had planned to post more sooner but my personal and professional to-do list just never stops. I wanted to do a little writeup on single-source multi-target control of AT3.5 (next post or so) but got a little distracted by all the other MIDI options within AT3.5 and the quick realization that I had no clue what half of this stuff was even for.</p>
<p>One aspect of my pedalboard are these two oddly placed switches kind of lower and between what would normally be bypass switches for the pedals.</p>
<div id="attachment_158" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/presetbrowsers.jpg"><img class="size-medium wp-image-158" title="Preset Browser Switches" src="http://charlesrthompson.files.wordpress.com/2011/06/presetbrowsers.jpg?w=300&#038;h=225" alt="Preset Browser Switches" width="300" height="225" /></a><p class="wp-caption-text">Preset Browser Switches</p></div>
<p>My intention was to make these preset browsers but never tried to do so until this writeup. I have spent a lot of time in the MIDI Control Preset window where I never saw the option and obviously never really looked at the Global options. Getting to the Global options is simply a matter of clicking the MIDI button in AT3.5 then selecting the Global button in the top left corner.</p>
<div id="attachment_157" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/globalmidi.jpg"><img class="size-medium wp-image-157" title="Global MIDI Control Window" src="http://charlesrthompson.files.wordpress.com/2011/06/globalmidi.jpg?w=300&#038;h=283" alt="Global MIDI Control Window" width="300" height="283" /></a><p class="wp-caption-text">Global MIDI Control Window</p></div>
<p>I&#8217;m glad to see that AT3.5 has two specific pre-configured entires for preset changes. If you recall from my previous post “<a href="../2011/06/12/quick-guide-to-using-external-midi-controllers-with-amplitube-3/">Quick Guide To Using External MIDI Controllers with AmpliTube 3</a>” all I need to do is highlight the Preset Next entry, click Learn then tap the next button on my controller. Repeat for the previous button and we&#8217;re ready to change presets at the simple tap of a foot.</p>
<div id="attachment_159" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/otheroptions.jpg"><img class="size-medium wp-image-159" title="Other Fixed Options in Global MIDI Control" src="http://charlesrthompson.files.wordpress.com/2011/06/otheroptions.jpg?w=300&#038;h=38" alt="Other Fixed Options in Global MIDI Control" width="300" height="38" /></a><p class="wp-caption-text">Other Fixed Options in Global MIDI Control</p></div>
<p>So next my eye is drawn to the Volume, Wah, and Wharmonator entries. Probably because I want to try and exploit them in unintended ways (it&#8217;s a personal tic). I can&#8217;t help but wonder what happens if I use two volume pedals in series? Ok sorta dumb I know, but what if I run a parallel config like signal chain 2 and have a pedal on each, what happens then? If I use two different Wahs, does it alter both? Let&#8217;s find out what&#8217;s going on here.</p>
<p>So after training the volume in signal chain one, anytime I drop a volume pedal, and regardless of which slot I move it to, the volume control just works. Pretty nifty. A huge time saver for a commonly used pedal. Dropping a second volume in-line defaults the control to the first volume in the series. That makes sense. Setting up a parallel config and placing a volume in stomp A and stomp B results in only the pedal in Stomp A responding to the controller. This makes a little less sense to me but I get it. Ok Wah time. I set the Wah row to learn in Global MIDI control and tap on a pedal. Good to go. Returning to the stomps I run the same tests as the volume and get the same results. I&#8217;m not terribly surprised to get the same results.</p>
<p>This all may sound like a bunch of overkill but I was just curious to learn the primary intent of the global &#8216;default&#8217; controllers and now know it&#8217;s just for your first matching pedal in the chain (and behind the scenes AT3.5 scans Stomps A through B in slot order order making no distinctions between serial or parallel configs.) Obviously any deviations from this single pedal approach are best handled by MIDI Preset control setups as covered in the previous post but part of me wouldn&#8217;t mind a &#8216;cascading&#8217; approach to control the first &#8216;non-bypassed&#8217; Wah in the chain should I want to use two flavors in the same preset. Just a thought.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=156&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/06/26/global-midi-controls-and-amplitube-3-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/presetbrowsers.jpg?w=300" medium="image">
			<media:title type="html">Preset Browser Switches</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/globalmidi.jpg?w=300" medium="image">
			<media:title type="html">Global MIDI Control Window</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/otheroptions.jpg?w=300" medium="image">
			<media:title type="html">Other Fixed Options in Global MIDI Control</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Guide To Using External MIDI Controllers with AmpliTube 3</title>
		<link>http://charlesrthompson.wordpress.com/2011/06/12/quick-guide-to-using-external-midi-controllers-with-amplitube-3/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/06/12/quick-guide-to-using-external-midi-controllers-with-amplitube-3/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 18:24:01 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Music Hardware and Software]]></category>
		<category><![CDATA[Amplitube]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[IK Multimedia]]></category>
		<category><![CDATA[MIDI]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=134</guid>
		<description><![CDATA[The release of AmpliTube 3 added a host of new features for interactive control of effect settings via external controllers. Among the options for control via IK Multimedia&#8217;s StealthPedal and upcoming StealthBoard you&#8217;ll find an option for controlling AmpliTube 3 via MIDI. There are a few layers to the control options such as parameters and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=134&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The release of AmpliTube 3 added a host of new features for interactive control of effect settings via external controllers. Among the options for control via IK Multimedia&#8217;s StealthPedal and upcoming StealthBoard you&#8217;ll find an option for controlling AmpliTube 3 via MIDI. There are a few layers to the control options such as parameters and patches but in this post I&#8217;m going to focus on the quick-and-dirty &#8220;I have this pedal and want to make it work&#8221; approach. While this post focuses on the standalone implementation of AmpliTube 3, there isn&#8217;t much difference when using your DAW. For your DAW just setup a MIDI input and route the signal to the instance of AmpliTube 3 you wish to control.</p>
<p>So if you&#8217;ve never seen AmpliTube, crawl out from under your rock and take a peek.</p>
<div id="attachment_135" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3mainshot.jpg"><img class="size-medium wp-image-135" title="Amplitube 3" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3mainshot.jpg?w=300&#038;h=207" alt="Amplitube 3" width="300" height="207" /></a><p class="wp-caption-text">Amplitube 3</p></div>
<p>Pop into the device setup (for standalone instances) and setup your interface and MIDI device parameters.</p>
<div id="attachment_136" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3devicesetup.jpg"><img class="size-medium wp-image-136 " title="AmpliTube Settings Screen" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3devicesetup.jpg?w=300&#038;h=277" alt="AmpliTube Settings Screen" width="300" height="277" /></a><p class="wp-caption-text">AmpliTube Settings Screen</p></div>
<p>Now flip over to the STOMP A section of the signal chain and let&#8217;s drop a Wah 46 on the floor.</p>
<div id="attachment_137" class="wp-caption alignnone" style="width: 223px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3dropwah.jpg"><img class="size-medium wp-image-137" title="Wah 46 (my fav)" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3dropwah.jpg?w=213&#038;h=300" alt="Wah 46 (my fav)" width="213" height="300" /></a><p class="wp-caption-text">Wah 46 (my fav)</p></div>
<p>IK Multimedia couldn&#8217;t have made the MIDI setup for this any easier or more straightforward. Simply right mouse click the aspect of the effect you wish to alter to reveal the Assign Midi -&gt; Learn function.</p>
<div id="attachment_138" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3rightlearn.jpg"><img class="size-medium wp-image-138" title="The Learn Function" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3rightlearn.jpg?w=300&#038;h=163" alt="The Learn Function" width="300" height="163" /></a><p class="wp-caption-text">The Learn Function</p></div>
<p>AmpliTube will now enter the Learn mode waiting for you to engage your physical pedal that you want to use to control the effect.</p>
<div id="attachment_139" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3learnwait.jpg"><img class="size-medium wp-image-139" title="MIDI Learn Waiting For Your Input" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3learnwait.jpg?w=300&#038;h=150" alt="MIDI Learn Waiting For Your Input" width="300" height="150" /></a><p class="wp-caption-text">MIDI Learn Waiting For Your Input</p></div>
<p>Now for the hard part&#8230; drag your lazy foot off the floor and push the pedal you want to use. The interface will dismiss the Learn message and you should be controlling the pedal. Good times!</p>
<p>Now let&#8217;s try a pushbutton because there are a few ways those little gizmos work within the interface.</p>
<p>Right mouse click the mode (off, on , auto) above the wah. You might notice there is no &#8216;bypass&#8217; option. This is one thing I don&#8217;t completely understand about the way IK implemented the MIDI Learn functionality. I personally would like to also see the bypass option available for any pedal that has a multi-mode like this, but that&#8217;s just a personal tic. Not a huge deal because IK has given us more than one way to assign control. In the lower right area of AmpliTube click the MIDI button.</p>
<div id="attachment_140" class="wp-caption alignnone" style="width: 266px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibutton.jpg"><img class="size-full wp-image-140" title="MIDI Button" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibutton.jpg?w=400" alt="MIDI Button"   /></a><p class="wp-caption-text">MIDI Button</p></div>
<p>The MIDI settings screen will appear. In this area you will already see the Wah MIDI control we setup. Now we&#8217;re going to manually configure a controller.</p>
<div id="attachment_141" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3midiwindow.jpg"><img class="size-medium wp-image-141" title="MIDI Window" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3midiwindow.jpg?w=300&#038;h=282" alt="MIDI Window" width="300" height="282" /></a><p class="wp-caption-text">MIDI Window</p></div>
<p>Click the Add button at the bottom of the window and a menu will appear. Navigate into the Stomp A signal chain -&gt; Wah 46 then select Bypass. A new row will be added to the parameters list.</p>
<div id="attachment_142" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3midisetupbypass.jpg"><img class="size-medium wp-image-142" title="Adding A Parameter To Control" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3midisetupbypass.jpg?w=300&#038;h=282" alt="Adding A Parameter To Control" width="300" height="282" /></a><p class="wp-caption-text">Adding A Parameter To Control</p></div>
<p>Now with the new row selected, click the Learn button and AmpliTube will enter the MIDI Learn mode.</p>
<div id="attachment_143" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3midilearnbypass.jpg"><img class="size-medium wp-image-143" title="Waiting For Button Input" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3midilearnbypass.jpg?w=300&#038;h=282" alt="Waiting For Button Input" width="300" height="282" /></a><p class="wp-caption-text">Waiting For Button Input</p></div>
<p>Press your &#8216;real world&#8217; button and AmpliTube should change the CC# to match the message sent by your controller button.</p>
<p>There may be one more step depending on your physical pedal construction. If your pedal snaps/latches like an on/off switch then the Latch Mode off would be preferred (and is the default) however if your switch is momentary then pressing your button would enable the pedal while letting the switch go would disable it. To alter this behavior simply click the word OFF in the parameter row to change it to ON and all is well.</p>
<div id="attachment_144" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibypasslatch.jpg"><img class="size-medium wp-image-144" title="Altering Latch Mode" src="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibypasslatch.jpg?w=300&#038;h=44" alt="Altering Latch Mode" width="300" height="44" /></a><p class="wp-caption-text">Altering Latch Mode</p></div>
<p>So there you have it&#8230; two ways to get immediate satisfaction in AmpliTube 3 with your external MIDI controller.</p>
<p>Lather, Rinse, Repeat.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=134&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/06/12/quick-guide-to-using-external-midi-controllers-with-amplitube-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="" length="" type="" />
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3mainshot.jpg?w=300" medium="image">
			<media:title type="html">Amplitube 3</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3devicesetup.jpg?w=300" medium="image">
			<media:title type="html">AmpliTube Settings Screen</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3dropwah.jpg?w=213" medium="image">
			<media:title type="html">Wah 46 (my fav)</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3rightlearn.jpg?w=300" medium="image">
			<media:title type="html">The Learn Function</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3learnwait.jpg?w=300" medium="image">
			<media:title type="html">MIDI Learn Waiting For Your Input</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibutton.jpg" medium="image">
			<media:title type="html">MIDI Button</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3midiwindow.jpg?w=300" medium="image">
			<media:title type="html">MIDI Window</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3midisetupbypass.jpg?w=300" medium="image">
			<media:title type="html">Adding A Parameter To Control</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3midilearnbypass.jpg?w=300" medium="image">
			<media:title type="html">Waiting For Button Input</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/amp3midibypasslatch.jpg?w=300" medium="image">
			<media:title type="html">Altering Latch Mode</media:title>
		</media:content>
	</item>
		<item>
		<title>Pedalboard Functions</title>
		<link>http://charlesrthompson.wordpress.com/2011/06/12/pedalboard-functions/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/06/12/pedalboard-functions/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 13:53:06 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Music Hardware and Software]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Pedalboard]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=124</guid>
		<description><![CDATA[Here&#8217;s a quick breakdown of the pedalboard functionality: Analog Functionality 1/4 inch input 1/4 inch TRS insert 1/4 inch output SPDT switch for selecting to enable the insert or not SPDT switch for defeating the input SPST momentary switch for temporarily stopping input until switch is released Audio taper potentiometer for volume pedal Issues &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=124&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick breakdown of the pedalboard functionality:</p>
<div id="attachment_125" class="wp-caption alignnone" style="width: 410px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/ver1controls.jpg"><img class="size-full wp-image-125" title="Pedalboard Controls" src="http://charlesrthompson.files.wordpress.com/2011/06/ver1controls.jpg?w=400&#038;h=292" alt="Pedalboard Controls" width="400" height="292" /></a><p class="wp-caption-text">Pedalboard Controls</p></div>
<p><strong>Analog Functionality</strong></p>
<ul>
<li>1/4 inch input</li>
<li>1/4 inch TRS insert</li>
<li>1/4 inch output</li>
<li>SPDT switch for selecting to enable the insert or not</li>
<li>SPDT switch for defeating the input</li>
<li>SPST momentary switch for temporarily stopping input until switch is released</li>
<li>Audio taper potentiometer for volume pedal</li>
</ul>
<p><strong>Issues</strong> &#8211; I don&#8217;t know alot about passive analog circuitry but now know there is a huge difference in the selection of the potentiometer rating for the volume control. It&#8217;s currently a 10K pot when it should be a 250K instead&#8230; which is closer to what&#8217;s actually inside a guitar to begin with. An incorrect selection here degrades the power of the signal.</p>
<p><strong>Potential Fix</strong> &#8211; Just replace the pot but I also like the degraded effect and will find a way to mimic the circuit path even with the new pot in place.</p>
<p>&nbsp;</p>
<p><strong>MIDI Functionality</strong></p>
<ul>
<li>2 SPST Momentary switches intended for patch changes</li>
<li>6 SPST Momentary switches intended for bypass/defeat of the MIDI pedals</li>
<li>6 10K linear potentiometers for the MIDI pedals</li>
<li>1 Pitch bend/MOD wheel from a discarded Roland Keyboard controller</li>
<li>1 SPST Momentary switch for MIDI Panic/Reset</li>
</ul>
<p><strong>Issues -</strong> The only issue is the pitch bend wheel. It doesn&#8217;t allow for a full throw (not a physical limitation) and as such won&#8217;t transmit the full 0-127 MIDI data range. I can only assume the wheel had accessory circuitry to translate this properly.</p>
<p><strong>Potential Fix -</strong> At some point I&#8217;m going to have to pull apart the wheel assembly and see if I can replace the potentiometer to the proper spec.</p>
<p>&nbsp;</p>
<p><strong>Other</strong></p>
<ul>
<li>5 Pin MIDI In/Out</li>
<li>7-12V / 100mA DC Input</li>
<li>SPDT switch for power enable/defeat</li>
<li>LED for MIDI activity</li>
</ul>
<p><strong>Issues -</strong> None</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=124&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/06/12/pedalboard-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/ver1controls.jpg" medium="image">
			<media:title type="html">Pedalboard Controls</media:title>
		</media:content>
	</item>
		<item>
		<title>AmpliTube Guitar MIDI Pedalboard Project</title>
		<link>http://charlesrthompson.wordpress.com/2011/06/11/guitar-midi-pedalboard-project/</link>
		<comments>http://charlesrthompson.wordpress.com/2011/06/11/guitar-midi-pedalboard-project/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 03:10:00 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Music Hardware and Software]]></category>
		<category><![CDATA[Amplitube]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Doepfer]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[IK Multimedia]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Pedalboard]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=82</guid>
		<description><![CDATA[I recently finished up the first part of a guitar pedalboard controller I&#8217;ve been planning/working on since about November of 2010. Keep in mind that I never really intended to post a How-To/DIY on this project and because of that I&#8217;m missing various details on how some things were done. At a certain point I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=82&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently finished up the first part of a guitar pedalboard controller I&#8217;ve been planning/working on since about November of 2010.</p>
<div id="attachment_89" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/fullshot1.jpg"><img class="size-medium wp-image-89" title="Completed Guitar Pedalboard" src="http://charlesrthompson.files.wordpress.com/2011/06/fullshot1.jpg?w=300&#038;h=201" alt="Completed Guitar Pedalboard" width="300" height="201" /></a><p class="wp-caption-text">Completed Guitar Pedalboard</p></div>
<p><em>Keep in mind that I never really intended to post a How-To/DIY on this project and because of that I&#8217;m missing various details on how some things were done. At a certain point I just started photographing everything as I progressed. Overall there are plenty of photos and descriptive info to foster ideas if this is something you want to take on. My only advice is to take your dear sweet time. This was just about the most challenging project I&#8217;ve taken on in the past few years and is evidenced by the 6-7 months of development it took to get to where I am today. That said&#8230; it passed the all important &#8220;smoke test&#8221; the first time I plugged it in, so taking your time on this stuff is a good thing.</em></p>
<p>The purpose of the pedalboard is to send MIDI messages to my <a title="Presonus Studio One" href="http://www.presonus.com/products/SoftwareDetail.aspx?SoftwareId=11" target="_blank">Presonus Studio One</a> digital audio workstation running <a title="Amplitube 3" href="http://www.ikmultimedia.com/amplitube/features/" target="_blank">AmpliTube 3</a> from <a title="IK Multimedia" href="http://www.ikmultimedia.com/" target="_blank">IK Multimedia</a>. AmpliTube can receive MIDI commands to turn on and off guitar pedals and alter parameters like volume, gain, wah-wah pedal filters, etc.  There are plenty of midi controller pedals out there (IK even makes a line) but with what I wanted I knew I would end up in a wiring mess and alot deeper in the hole cash-wise for this adventure. Since I only play in my studio I wasn&#8217;t overly concerned with building the pedalboard like a tank, I just focused on good design and general ruggedness.</p>
<p>My first stop was trying to figure out how to even tackle the electronics aspect of this. I asked a horde of music hardware vendors if anyone made some kind of black box you just plug a bunch of expression pedals into and then it all runs to a simple MIDI output. To my knowledge, nobody (commercially) makes such a simple little beasty. Pressing on I got into the idea, and alluring underworld,  of DIY MIDI&#8230; USB controllers using joysticks, programming your own joystick to MIDI drivers, etc. All way too much for something I just wanted to have fun with.</p>
<p>After alot of searching I finally discovered <a title="Doepfer Electronics" href="http://www.doepfer.de/home_e.htm" target="_blank">Doepfer Electronics</a> in Germany, producers of MIDI keyboards/controllers galore and one great lineup of OEM/DIY controllers. They have plenty of them to choose from but ultimately I selected the <a title="Pocket Electronic" href="http://www.doepfer.de/pe.htm" target="_blank">Pocket Electronic</a> as it offered up to 16 buttons or Potentiometers (sliders/pedals) running a MIDI in/out pair (which could be daisy chained)&#8230; just enough for the design I had in mind. I got the board from Doepfer&#8217;s US Distributor, <a title="Analogue Haven" href="http://www.analoguehaven.com/" target="_blank">Analogue Haven</a>, based in California.</p>
<div id="attachment_94" class="wp-caption alignnone" style="width: 210px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pocketelectronic.jpg"><img class="size-full wp-image-94" title="Pocket Electronic" src="http://charlesrthompson.files.wordpress.com/2011/06/pocketelectronic.jpg?w=400" alt="Pocket Electronic"   /></a><p class="wp-caption-text">Pocket Electronic</p></div>
<p>This is where I started design-wise in November of 2010:</p>
<div id="attachment_85" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/design.jpg"><img class="size-medium wp-image-85" title="Guitar Pedalboard Design" src="http://charlesrthompson.files.wordpress.com/2011/06/design.jpg?w=300&#038;h=262" alt="Guitar Pedalboard Design" width="300" height="262" /></a><p class="wp-caption-text">Guitar Pedalboard Design</p></div>
<p>The original design (sorry, not alot of light near the whiteboard) was to include 1 analog pedal with an insert, 5 midi pedals, and an array of switches to send signals, reverse pedal polarity (up becomes down), etc. The pedals were shaped like feet and all of the wiring was to run out of the back of the unit.</p>
<div id="attachment_92" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/prototype.jpg"><img class="size-medium wp-image-92" title="Early Prototype" src="http://charlesrthompson.files.wordpress.com/2011/06/prototype.jpg?w=300&#038;h=200" alt="Early Prototype" width="300" height="200" /></a><p class="wp-caption-text">Early Prototype</p></div>
<p>This early prototype of a pedal was tossed together by myself and my good friend Jeff. I traced my Cons and we used whatever was in the garage to toss together the initial concept. If I remember correctly the first pedal was the rack and pinion from a telescope, curtain rod, potentiometer, a bracket from those western-style swinging doors, and some screws/plastic tubes and brackets. Crazy&#8230; but it worked long enough to give me hope, then it broke. Good enough.</p>
<p>The first thing I struggled with were the mechanics of the pedal itself.. specifically the issue was driving the potentiometer via the pedal. I went through a few designs then ultimately opened up my old Roland volume pedal (uses a sliding mechanism) and then the Crybaby Wah pedal (uses a rack and gear assembly). Preferring the Crybaby engineering because it seemed a little simpler to engineer, I was set. Finding a source for the Crybaby parts took some time but I was very happy with the service from <a title="New Old Sounds" href="http://www.newoldsounds.com/index.php?main_page=index&amp;cPath=128_318" target="_blank">NewOldSounds.com</a>. I ordered a set of racks and gears then played the waiting on shipping game.</p>
<div id="attachment_95" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pedals_underside.jpg"><img class="size-medium wp-image-95" title="Pedal Design" src="http://charlesrthompson.files.wordpress.com/2011/06/pedals_underside.jpg?w=300&#038;h=246" alt="Pedal Design" width="300" height="246" /></a><p class="wp-caption-text">Pedal Design</p></div>
<p>The pedals were the first thing I built. Ignore the nails and gizmos all around the above image&#8230; we&#8217;ll get to that later. The pedals are simply just 3 inch wide oak from Lowe&#8217;s. I cut two three foot sections into foot long pieces then routed off the sharp edges with a 45% bit.</p>
<p>Near the top of the pedal you can see the pedal racks. I cut then filed pieces of aluminum channel (again Lowe&#8217;s), added a hole for the rack pin, then screwed them to the board and mounted the rack via the pin insert.</p>
<p>The pivot point of the pedal is a really crazy design but this is what happens when you start with one thing, get too far in, and have to make it work. The base of the assembly is aluminum channel which is screwed to the board with countersunk nuts on the top of the pedal. Within the channel (at the ends) you can see nylon grommets which have been cut to fit inside the channel. Through the grommets is a length of 1/4 aluminum rod. The rod has a setscrew which keeps it from pivoting in the grommets. Working our way out you will find a 1/4 washer, 1/4 clear tubing to help pressure fit the pedals together, another 1/4 washer, then finally a 1 inch nylon grommet. I can probably imagine nine better ways to do this now &#8230; live and learn.</p>
<div id="attachment_97" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pedalblocks.jpg"><img class="size-medium wp-image-97" title="Mounting Layout" src="http://charlesrthompson.files.wordpress.com/2011/06/pedalblocks.jpg?w=300&#038;h=201" alt="Mounting Layout" width="300" height="201" /></a><p class="wp-caption-text">Mounting Layout</p></div>
<p>Back to the nails. The blocks are oak which has had holes (the same size and the nylon bushings) drilled through them at a 90 degree angle then four mounting holes at the corners of the blocks. They were all placed on a curtain rod then run through the table saw to give them the angled edges. The pedals were then placed on the pedalboard at even intervals and the blocks spaced between the pedals. The nails were simply tapped in to provide marks ensuring a proper lineup for each block when I drilled the mounting holes.</p>
<div id="attachment_98" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pedalholes.jpg"><img class="size-medium wp-image-98" title="Mounting Holes Revealed" src="http://charlesrthompson.files.wordpress.com/2011/06/pedalholes.jpg?w=300&#038;h=201" alt="Mounting Holes Revealed" width="300" height="201" /></a><p class="wp-caption-text">Mounting Holes Revealed</p></div>
<p>Holes were then drilled in the board then working left to right, each block was temporarily mounted followed by a pedal until all blocks were in place. No photos exist of this, but obviously I put some non-skid tape on the pedal faces. This is just the standard black no-skid stuff you can get at Lowe&#8217;s.</p>
<div id="attachment_99" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pedal_temp.jpg"><img class="size-medium wp-image-99" title="Pedals Temporarily Mounted" src="http://charlesrthompson.files.wordpress.com/2011/06/pedal_temp.jpg?w=300&#038;h=201" alt="Pedals Temporarily Mounted" width="300" height="201" /></a><p class="wp-caption-text">Pedals Temporarily Mounted</p></div>
<p>Finally, the end blocks were capped with an oak dowel and set screw.</p>
<div id="attachment_100" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/setblock.jpg"><img class="size-medium wp-image-100" title="End Block" src="http://charlesrthompson.files.wordpress.com/2011/06/setblock.jpg?w=300&#038;h=201" alt="End Block" width="300" height="201" /></a><p class="wp-caption-text">End Block</p></div>
<p>Now to backtrack for a moment. You may remember that oddball pedal design and mention of some clear tubing. The reason for the tubing is to allow for adjustments in the placement of the pedals so they glide effortlessly between the blocks without touching. There was alot of troubleshooting to get that to work. Basically if the left side of a pedal was rubbing the block, I needed to pull everything and put a longer spacer. Then that may change the pedal next to it, and so on. So this was a tedious chore to finalize and one day I&#8217;ll change the design, but it works now and that&#8217;s enough for me.</p>
<p>After the pedals were working well I marked the location of each rack gear, labeled each pedal and block, then pulled the whole thing apart (again&#8230; this design will never be repeated!)</p>
<div id="attachment_101" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/gearmarks.jpg"><img class="size-medium wp-image-101" title="Marked Locations for Gear Area" src="http://charlesrthompson.files.wordpress.com/2011/06/gearmarks.jpg?w=300&#038;h=201" alt="Marked Locations for Gear Area" width="300" height="201" /></a><p class="wp-caption-text">Marked Locations for Gear Area</p></div>
<p>Ok so on to the gear and potentiometer. The Crybaby Wah pedal has the rack gear as shown earlier which marries up at a 90 degree angle to a gear on a potentiometer. I needed to find a way to mount the potentiometer, keep it from rotating, and also take a little abuse from the constant up-down action of the gear. So here is what I came up with:</p>
<div id="attachment_102" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/potandgear.jpg"><img class="size-medium wp-image-102" title="Potentiometer Assembly" src="http://charlesrthompson.files.wordpress.com/2011/06/potandgear.jpg?w=300&#038;h=200" alt="Potentiometer Assembly" width="300" height="200" /></a><p class="wp-caption-text">Potentiometer Assembly</p></div>
<p>The frame is 90 degree aluminum stock with a mounting hole and (to the right) a &#8216;stop hole&#8217; for the little tab that sticks out on potentiometers. This holds the pot in place without rotation. The potentiometers were 2 inches long and here is where I got fancy. It&#8217;s hard to see in these photos but there are two problems with standard potentiometers and the Dunlop replacement parts. First, the gear has a very shallow D shape that is not common and second, there is a snap ring on the end. I don&#8217;t  know how I decided to do it this way, but before assembly I put the potentiometer in my drill press, just like it was a bit then threw the switch. Using a hacksaw I was able to cut a thin notch for the snap ring. I then raised the blade about 1/8th of an inch and cut a little deeper to score a cutoff for the post.</p>
<p>Once the post was cut off I then filed the rough end and while in a vise, carefully filed just enough of the rounded post off to form the shallow D to mate with the gear. Then I did that whole process over and over for the rest of the pots.</p>
<div id="attachment_103" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/lotsapots.jpg"><img class="size-medium wp-image-103" title="Nothing Quite Like Garage Machining" src="http://charlesrthompson.files.wordpress.com/2011/06/lotsapots.jpg?w=300&#038;h=200" alt="Nothing Quite Like Garage Machining" width="300" height="200" /></a><p class="wp-caption-text">Nothing Quite Like Garage Machining</p></div>
<p>It was time to mount the potentiometer assembly. Using my marks from before I measured the space needed for the gear and 90 degree angles then knocked this out with a jigsaw:</p>
<div id="attachment_104" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/gearmountingholes.jpg"><img class="size-medium wp-image-104" title="Potentiometer Mounting Hole" src="http://charlesrthompson.files.wordpress.com/2011/06/gearmountingholes.jpg?w=300&#038;h=229" alt="Potentiometer Mounting Hole" width="300" height="229" /></a><p class="wp-caption-text">Potentiometer Mounting Hole</p></div>
<p>The left side is for the pot body, the slots are for the 90 angle facing and the open area is for the gear. Using the 90 degree stock and this &#8216;slot&#8217; allowed for a good bit of contact surface area and added strength.</p>
<div id="attachment_105" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/potmountedtop.jpg"><img class="size-medium wp-image-105" title="The Potentiometer Assembly Just Slides Right In" src="http://charlesrthompson.files.wordpress.com/2011/06/potmountedtop.jpg?w=300&#038;h=201" alt="The Potentiometer Assembly Just Slides Right In" width="300" height="201" /></a><p class="wp-caption-text">The Potentiometer Assembly Just Slides Right In</p></div>
<div id="attachment_106" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/potmountedbottom.jpg"><img class="size-medium wp-image-106" title="Underside Shot Of The Rack Mated To The Gear" src="http://charlesrthompson.files.wordpress.com/2011/06/potmountedbottom.jpg?w=300&#038;h=201" alt="Underside Shot Of The Rack Mated To The Gear" width="300" height="201" /></a><p class="wp-caption-text">Underside Shot Of The Rack Mated To The Gear</p></div>
<div id="attachment_107" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/potmountedmulti.jpg"><img class="size-medium wp-image-107" title="All Pots In Place" src="http://charlesrthompson.files.wordpress.com/2011/06/potmountedmulti.jpg?w=300&#038;h=201" alt="All Pots In Place" width="300" height="201" /></a><p class="wp-caption-text">All Pots In Place</p></div>
<p>After cutting then staining the board and pedals, the assemblies were screwed into place followed by remounting the pedals. Starting to look like something, isn&#8217;t it?</p>
<div id="attachment_108" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/stained.jpg"><img class="size-medium wp-image-108" title="Assembled Pedals" src="http://charlesrthompson.files.wordpress.com/2011/06/stained.jpg?w=300&#038;h=201" alt="Assembled Pedals" width="300" height="201" /></a><p class="wp-caption-text">Assembled Pedals</p></div>
<p>In order to hold the rack against the gear, and to keep the pedal positioned when your foot is taken off, Dunlop uses a greased wire grommet pushing up against the back of the rack. Ok&#8230; good enough for me.</p>
<div id="attachment_110" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/pushgrommet.jpg"><img class="size-medium wp-image-110" title="Wire Grommet Mounted to Stock Aluminum" src="http://charlesrthompson.files.wordpress.com/2011/06/pushgrommet.jpg?w=300&#038;h=201" alt="Wire Grommet Mounted to Stock Aluminum" width="300" height="201" /></a><p class="wp-caption-text">Wire Grommet Mounted to Stock Aluminum</p></div>
<p>Only three major tasks left in the construction phase.</p>
<div id="attachment_111" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/box.jpg"><img class="size-medium wp-image-111" title="Angled Housing Box Built Around Board" src="http://charlesrthompson.files.wordpress.com/2011/06/box.jpg?w=300&#038;h=201" alt="Angled Housing Box Built Around Board" width="300" height="201" /></a><p class="wp-caption-text">Angled Housing Box Built Around Board</p></div>
<p>I found an old modwheel while cleaning up&#8230; couldn&#8217;t resist. The handle is off an old sink. Why not? Looks great!</p>
<div id="attachment_112" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/modwheel.jpg"><img class="size-medium wp-image-112" title="Mod Wheel" src="http://charlesrthompson.files.wordpress.com/2011/06/modwheel.jpg?w=300&#038;h=201" alt="Mod Wheel" width="300" height="201" /></a><p class="wp-caption-text">Mod Wheel</p></div>
<div id="attachment_113" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/switches.jpg"><img class="size-medium wp-image-113" title="Footswitches Added" src="http://charlesrthompson.files.wordpress.com/2011/06/switches.jpg?w=300&#038;h=177" alt="Footswitches Added" width="300" height="177" /></a><p class="wp-caption-text">Footswitches Added</p></div>
<p>I added a series of footswitches for various purposes that I&#8217;ll outline later. Some momentary, some on/off. I got all the switches from <a title="All Electronics" href="http://www.allelectronics.com/">AllElectronics.com</a>. For whatever reason these footswitches vary wildly on price and All Electronics seemed to have the best deal and their site gave me the most confidence. I also got the 5 PIN din plugs and 1/4 inch jacks through them.</p>
<p>This is where things in this post will speed up. Wiring this beast took about 2 days and if you want to learn about that, opt for reading the manual with the board. Instead of soldering  to the ribbon cables that connected to the board I opted to use a series of terminal strips. My thinking was that I&#8217;ve never done this before and I didn&#8217;t want to have to undo alot of stuff if I made mistakes. This turned out to be a wise choice as I made about a half dozen mistakes that were easily corrected by unscrewing a few terminals and switching wires.</p>
<div id="attachment_114" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/wiring1.jpg"><img class="size-medium wp-image-114" title="Wireapalooza In Effect" src="http://charlesrthompson.files.wordpress.com/2011/06/wiring1.jpg?w=300&#038;h=201" alt="Wireapalooza In Effect" width="300" height="201" /></a><p class="wp-caption-text">Wireapalooza In Effect</p></div>
<p>Some of the things to point out in my wiring:</p>
<div id="attachment_115" class="wp-caption alignnone" style="width: 219px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/audio.jpg"><img class="size-medium wp-image-115" title="Audio Wiring" src="http://charlesrthompson.files.wordpress.com/2011/06/audio.jpg?w=209&#038;h=300" alt="Audio Wiring" width="209" height="300" /></a><p class="wp-caption-text">Audio Wiring</p></div>
<p>The first pedal is an audio pedal and serves as a passive volume control. There are three audio jacks for in, out and insert in the chain. there is an a/b switch for the insert along with a master kill switch and a momentary kill switch for stutter effects or just temporarily muting the line. The exposed copper wire feeds through all the pot mounts and is grounded to the MIDI board as well. I&#8217;m currently using a pretty mismatched pot for the audio. It is degrading the signal but in a way I like. It almost gives my guitar a semi-weak vintage pickup sound. I trying to figure out a way to allow that with an upgrade potentiometer before I change it. If I need to hot-rod the guitar I currently just run it right to the audio input of the DAW.</p>
<div id="attachment_116" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/midipower.jpg"><img class="size-medium wp-image-116" title="Midi And Power Hookups" src="http://charlesrthompson.files.wordpress.com/2011/06/midipower.jpg?w=300&#038;h=201" alt="Midi And Power Hookups" width="300" height="201" /></a><p class="wp-caption-text">Midi And Power Hookups</p></div>
<p>Another early design decision was to put all the inputs on top of the pedalboard. I decided to also run two cropped MIDI cables to 5 Pin DIN connectors instead of mounting the board in such a way to allow direct plug in of the cables. I did this for two reasons. First, I didn&#8217;t want to break the board with general wear and tear plugging in cables and second, since multiple OEM units from the vendor can be daisy chained, this design allowed room for a second board and easy connectivity. In this show you may also be able to see the MIDI panic button near the DIN plugs. There is also a power switch just to the opt out of view.</p>
<div id="attachment_117" class="wp-caption alignnone" style="width: 310px"><a href="http://charlesrthompson.files.wordpress.com/2011/06/fullshot2.jpg"><img class="size-medium wp-image-117" title="The Final Board" src="http://charlesrthompson.files.wordpress.com/2011/06/fullshot2.jpg?w=300&#038;h=201" alt="The Final Board" width="300" height="201" /></a><p class="wp-caption-text">The Final Board</p></div>
<p>And there you have it. One 6 month long, but worth it, ordeal. I&#8217;ll be posting some follow up videos on how the board interacts with AmpliTube 3 along with an overview of the various board functions.</p>
<p>Go forth and create!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=82&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2011/06/11/guitar-midi-pedalboard-project/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="" length="" type="" />
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/fullshot1.jpg?w=300" medium="image">
			<media:title type="html">Completed Guitar Pedalboard</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pocketelectronic.jpg" medium="image">
			<media:title type="html">Pocket Electronic</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/design.jpg?w=300" medium="image">
			<media:title type="html">Guitar Pedalboard Design</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/prototype.jpg?w=300" medium="image">
			<media:title type="html">Early Prototype</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pedals_underside.jpg?w=300" medium="image">
			<media:title type="html">Pedal Design</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pedalblocks.jpg?w=300" medium="image">
			<media:title type="html">Mounting Layout</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pedalholes.jpg?w=300" medium="image">
			<media:title type="html">Mounting Holes Revealed</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pedal_temp.jpg?w=300" medium="image">
			<media:title type="html">Pedals Temporarily Mounted</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/setblock.jpg?w=300" medium="image">
			<media:title type="html">End Block</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/gearmarks.jpg?w=300" medium="image">
			<media:title type="html">Marked Locations for Gear Area</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/potandgear.jpg?w=300" medium="image">
			<media:title type="html">Potentiometer Assembly</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/lotsapots.jpg?w=300" medium="image">
			<media:title type="html">Nothing Quite Like Garage Machining</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/gearmountingholes.jpg?w=300" medium="image">
			<media:title type="html">Potentiometer Mounting Hole</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/potmountedtop.jpg?w=300" medium="image">
			<media:title type="html">The Potentiometer Assembly Just Slides Right In</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/potmountedbottom.jpg?w=300" medium="image">
			<media:title type="html">Underside Shot Of The Rack Mated To The Gear</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/potmountedmulti.jpg?w=300" medium="image">
			<media:title type="html">All Pots In Place</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/stained.jpg?w=300" medium="image">
			<media:title type="html">Assembled Pedals</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/pushgrommet.jpg?w=300" medium="image">
			<media:title type="html">Wire Grommet Mounted to Stock Aluminum</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/box.jpg?w=300" medium="image">
			<media:title type="html">Angled Housing Box Built Around Board</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/modwheel.jpg?w=300" medium="image">
			<media:title type="html">Mod Wheel</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/switches.jpg?w=300" medium="image">
			<media:title type="html">Footswitches Added</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/wiring1.jpg?w=300" medium="image">
			<media:title type="html">Wireapalooza In Effect</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/audio.jpg?w=209" medium="image">
			<media:title type="html">Audio Wiring</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/midipower.jpg?w=300" medium="image">
			<media:title type="html">Midi And Power Hookups</media:title>
		</media:content>

		<media:content url="http://charlesrthompson.files.wordpress.com/2011/06/fullshot2.jpg?w=300" medium="image">
			<media:title type="html">The Final Board</media:title>
		</media:content>
	</item>
		<item>
		<title>Abstract Guitars on the Site</title>
		<link>http://charlesrthompson.wordpress.com/2010/07/10/abstract-guitars-on-the-site/</link>
		<comments>http://charlesrthompson.wordpress.com/2010/07/10/abstract-guitars-on-the-site/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 20:47:39 +0000</pubDate>
		<dc:creator>charlesrthompson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://charlesrthompson.wordpress.com/?p=72</guid>
		<description><![CDATA[I completed some new work in June and am just now getting around to posting the images&#8230; &#8220;Duo&#8221; &#8211; 48&#215;48 Congrats to Jim Nichols who won Duo in the &#8220;name my studio&#8221; contest on Facebook. &#8220;Solo&#8221; &#8211; 48&#215;48 &#8220;One&#8221; &#8211; 27&#215;38 Congrats to Trey Lominack who won One in the follow-up &#8220;Name in the hat&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=72&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I completed some new work in June and am just now getting around to posting the images&#8230;</p>
<p><a href="http://www.charlesrthompson.com/index.cfm?id=421"><img class="alignnone" title="Duo" src="http://www.charlesrthompson.com/images/artwork/medium/421.jpg" alt="" width="236" height="250" /></a><br />
&#8220;Duo&#8221; &#8211; 48&#215;48<br />
Congrats to Jim Nichols who won Duo in the &#8220;name my studio&#8221; contest on Facebook.</p>
<p><a href="http://www.charlesrthompson.com/index.cfm?id=422"><img class="alignnone" title="Solo" src="http://www.charlesrthompson.com/images/artwork/medium/422.jpg" alt="" width="250" height="246" /></a><br />
&#8220;Solo&#8221; &#8211; 48&#215;48</p>
<p><a href="http://www.charlesrthompson.com/index.cfm?id=423"><img class="alignnone" title="One" src="http://www.charlesrthompson.com/images/artwork/medium/423.jpg" alt="" width="230" height="250" /></a><br />
&#8220;One&#8221; &#8211; 27&#215;38<br />
Congrats to Trey Lominack who won One in the follow-up &#8220;Name in the hat&#8221; giveaway<br />
on Facebook.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/charlesrthompson.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/charlesrthompson.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/charlesrthompson.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=charlesrthompson.wordpress.com&amp;blog=6214221&amp;post=72&amp;subd=charlesrthompson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://charlesrthompson.wordpress.com/2010/07/10/abstract-guitars-on-the-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
	
		<media:content url="http://1.gravatar.com/avatar/fd17b9b9a5df06431f53960ccbf3e36d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CRT</media:title>
		</media:content>

		<media:content url="http://www.charlesrthompson.com/images/artwork/medium/421.jpg" medium="image">
			<media:title type="html">Duo</media:title>
		</media:content>

		<media:content url="http://www.charlesrthompson.com/images/artwork/medium/422.jpg" medium="image">
			<media:title type="html">Solo</media:title>
		</media:content>

		<media:content url="http://www.charlesrthompson.com/images/artwork/medium/423.jpg" medium="image">
			<media:title type="html">One</media:title>
		</media:content>
	</item>
	</channel>
</rss>
