<?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/"
	>

<channel>
	<title>sinneb</title>
	<atom:link href="http://www.sinneb.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sinneb.net</link>
	<description>creating a polyphonic musical instrument</description>
	<lastBuildDate>Wed, 11 Apr 2012 14:34:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Control CD4021 and 74HC595 over the same SPI bus</title>
		<link>http://www.sinneb.net/2011/10/control-cd4021-and-74hc595-over-the-same-spi-bus/</link>
		<comments>http://www.sinneb.net/2011/10/control-cd4021-and-74hc595-over-the-same-spi-bus/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 12:47:50 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=421</guid>
		<description><![CDATA[Working on a project I needed extra digital in&#8217;s and extra digital out&#8217;s for my Arduino Uno (lots of LEDs, lots of buttons). I&#8217;ll use a CD4021 to extend the digital in&#8217;s and a 74HC595 to gain extra digital out&#8217;s. I decided it would be best to both access the data of the CD4021 and [...]]]></description>
			<content:encoded><![CDATA[<p>Working on a project I needed extra digital in&#8217;s and extra digital out&#8217;s for my Arduino Uno (lots of LEDs, lots of buttons). I&#8217;ll use a CD4021 to extend the digital in&#8217;s and a 74HC595 to gain extra digital out&#8217;s. I decided it would be best to both access the data of the CD4021 and send data to the 74HC595 over the hardware SPI bus on the Arduino (see previous post). Turns out te be not that hard (fortunately ;) ). Here&#8217;s the eagle schematic for 1 4021 and 1 595. Of course you can cascade more IC&#8217;s if you need more in&#8217;s or out&#8217;s. Only difference is that you&#8217;ll have to interpret and send more bytes (1 byte per IC).</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/10/ArduinoSPI4021_595.png"><img class="alignnone size-medium wp-image-422" title="ArduinoSPI4021_595" src="http://www.sinneb.net/wp-content/uploads/2011/10/ArduinoSPI4021_595-300x192.png" alt="" width="300" height="192" /></a></p>
<p>Here&#8217;s my Arduino code so far:</p>
<pre class="brush: cpp; title: ; notranslate">
#include &lt;SPI.h&gt;

#define PIN_SCK          13             // SPI clock
#define PIN_MISO         12             // SPI data input
#define PIN_MOSI         11             // SPI data output
#define PIN_SS1          10             // SPI hardware default SS pin, 4021
#define PIN_595_1        9              // SPI 74HC595

// result byte for 4021
byte buttons8;

// global vars for button timeout and debounce
long button1timeout = 0;
long button2timeout = 0;
long debounce = 200;

void setup() {
  Serial.begin(9600);
  SPI.begin();

  // set all IC select pins HIGH
  digitalWrite(PIN_SS1,HIGH);
  pinMode(PIN_595_1, OUTPUT);
  digitalWrite(PIN_595_1,HIGH);
}

void loop() {

  // SS1 = HIGH -&gt; 4021 is gathering data from parallel inputs

  // select 595
  digitalWrite(PIN_595_1,LOW);

  // send BIN number to 595 to light 1 LED (not necessarily the 1 example LED on the schematic)
  SPI.transfer(B00000100);

  // deselect 595
  digitalWrite(PIN_595_1,HIGH);

  // select 4021
  digitalWrite(PIN_SS1,LOW);
  // read CD4021 IC
  buttons8 = SPI.transfer(0x00);

  // button functions and debounces
  // needs refactoring for smaller footprint
  if((B10000000 &amp; buttons8) &amp;&amp; (millis() - button1timeout &gt; debounce)) {
    Serial.println(&quot;but1&quot;);
    button1timeout = millis();
  }
  if((B01000000 &amp; buttons8) &amp;&amp; (millis() - button2timeout &gt; debounce)) {
    Serial.println(&quot;but2&quot;);
    button2timeout = millis();
  }

  // deselect 4021
  digitalWrite(PIN_SS1,HIGH);
}
</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/10/control-cd4021-and-74hc595-over-the-same-spi-bus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino, CD4021 and SPI</title>
		<link>http://www.sinneb.net/2011/10/arduino-cd4051-and-spi/</link>
		<comments>http://www.sinneb.net/2011/10/arduino-cd4051-and-spi/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 20:27:02 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=415</guid>
		<description><![CDATA[The &#8220;ShiftIn&#8221; tutorial on the Arduino site (Parallel to Serial Shifting-In with a CD4021BE) is very clear on why and how to setup and test your Arduino in combination with a CD4021 IC. I needed extra digital inputs and decided to communicate via SPI with the CD4021 chip. Figured it out, it was actually pretty [...]]]></description>
			<content:encoded><![CDATA[<p>The &#8220;ShiftIn&#8221; tutorial on the Arduino site (Parallel to Serial Shifting-In with a CD4021BE) is very clear on why and how to setup and test your Arduino in combination with a CD4021 IC. I needed extra digital inputs and decided to communicate via SPI with the CD4021 chip. Figured it out, it was actually pretty simple thanks to the easy SPI implementation in the Arduino software since version 0020 or so (?)</p>
<p>Setup as described in the Arduino tutorial. Reconnect the clock, the MOSI and the slaveselect as the #defines in the following code. And you&#8217;re all set.</p>
<pre class="brush: cpp; title: ; notranslate">
#include

#define PIN_SCK          13             // SPI clock
#define PIN_MISO         12             // SPI data input
#define PIN_MOSI         11             // SPI data output
#define PIN_SS1          10             // SPI hardware default SS pin

void setup() {
  Serial.begin(9600);
  SPI.begin();
}

void loop() {
  digitalWrite(PIN_SS1,HIGH);

  // while gathering info from parallel inputs
  // do some other processing
  // for now I'll use
  delayMicroseconds(200);

  // select PIN_SS1 CD4021 IC
  digitalWrite(PIN_SS1,LOW);
  // read byte from CD4021 IC
  Serial.println(SPI.transfer(0x00),BIN);
}
</pre>
<p>tip: buy some <a href="http://www.dickbest.nl/index.php?_a=viewProd&amp;productId=3368" target="_blank">resistor arrays</a> instead of all individual resistors</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/10/arduino-cd4051-and-spi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LCD optimizations and additions</title>
		<link>http://www.sinneb.net/2011/10/lcd-optimizations-and-additions/</link>
		<comments>http://www.sinneb.net/2011/10/lcd-optimizations-and-additions/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 20:14:31 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=405</guid>
		<description><![CDATA[One of my first posts contains a LCD prototype. Today I needed LCD functionality and made some optimizations and additions to the LCD prototype. Speed up In the LCD3Wire library, I removed two delays: This gives a good speed increase when using the LCD3Wire library. Furthermore, reading this post (http://solar-blogg.blogspot.com/2009/02/displaying-custom-5&#215;8-characters-on.html) I copied the code to [...]]]></description>
			<content:encoded><![CDATA[<p>One of my first posts contains a LCD prototype. Today I needed LCD functionality and made some optimizations and additions to the LCD prototype.</p>
<p>Speed up</p>
<p>In the LCD3Wire library, I removed two delays:</p>
<pre class="brush: cpp; title: ; notranslate">
131c131
&lt;   //delay(1);
---
&gt;   delay(1);
155c155
&lt;   //delayMicroseconds(1);
---
&gt;   delayMicroseconds(10);
</pre>
<p>This gives a good speed increase when using the LCD3Wire library. Furthermore, reading this post (<a href="http://solar-blogg.blogspot.com/2009/02/displaying-custom-5x8-characters-on.html">http://solar-blogg.blogspot.com/2009/02/displaying-custom-5&#215;8-characters-on.html</a>) I copied the code to the Arduino and displayed my own custom character (using the LCD3Wire library)</p>
<pre class="brush: cpp; title: ; notranslate">
lcd.commandWrite(0x40);
lcd.print(0b00000);
lcd.print(0b00100);
lcd.print(0b00010);
lcd.print(0b11111);
lcd.print(0b00010);
lcd.print(0b00100);
lcd.print(0b00000);
lcd.print(0b00000);
lcd.cursorTo(1,0);
lcd.print(0x00);
</pre>
<p>And another great LCD speedup trick by designer2k2 on the Arduino forums is to avoid using lcd.cursorTo. Instead use his direct positioning code</p>
<p><a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1240088162">http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1240088162</a></p>
<pre class="brush: cpp; title: ; notranslate">
lcd.commandWrite(0x80);                //Line=1, Cursor 0
lcd.commandWrite(0xC0+val);            //Line=2, Cursor val
lcd.commandWrite(0x94+7);              //Line=3, Cursor 7
lcd.commandWrite(0xD4);                //Line=4, Cursor 0
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/10/lcd-optimizations-and-additions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impressed by Thor!</title>
		<link>http://www.sinneb.net/2011/10/impressed-by-thor/</link>
		<comments>http://www.sinneb.net/2011/10/impressed-by-thor/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 21:36:43 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[newsynth]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=393</guid>
		<description><![CDATA[Wow! I decided to give Reason 6 a good try. First of all I wanted to recreate the sound of my last analog prototype (see and listen to the previous post). Oh, here&#8217;s a picture of that prototype btw: In Thor I recreated the sound of a single analog oscillator like so: A single Analog [...]]]></description>
			<content:encoded><![CDATA[<p>Wow! I decided to give Reason 6 a good try. First of all I wanted to recreate the sound of my last analog prototype (see and listen to the previous post). Oh, here&#8217;s a picture of that prototype btw:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/10/C360_2011-10-15-20-38-58.jpg"><img class="alignnone size-full wp-image-394" title="Camera 360" src="http://www.sinneb.net/wp-content/uploads/2011/10/C360_2011-10-15-20-38-58.jpg" alt="" width="480" height="366" /></a></p>
<p>In Thor I recreated the sound of a single analog oscillator like so:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/10/thor_analog.png"><img class="alignnone size-full wp-image-397" title="thor_analog" src="http://www.sinneb.net/wp-content/uploads/2011/10/thor_analog.png" alt="" width="469" height="299" /></a></p>
<p>A single Analog Osc generating a sawtooth waveform, no filters, enveloppe only sustain. Sounds&#8230; the same! Listen for yourself:</p>
<p><object width="100%" height="81" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F26381471" /><embed width="100%" height="81" type="application/x-shockwave-flash" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F26381471" allowscriptaccess="always" /> </object> <span><a href="http://soundcloud.com/sinneb/reasonanalogflac">ReasonanalogFLAC</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span></p>
<p>This recording was made via the buildin soundcard of my MacBook. Sound quality will improve when better audio interface hardware equipment is being used. The soundcloud conversion didn&#8217;t work out, not in PCM nor FLAC&#8230;</p>
<p>My soundcloud comment:</p>
<p>Tough upload, still sounds horrible. It&#8217;s not that important, just wanted to let you hear the hard-to-hear difference between my own VCO prototype and a construction in Propellerhead Reason&#8217;s Thor synthesizer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/10/impressed-by-thor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New synth in the works</title>
		<link>http://www.sinneb.net/2011/07/new-synth-in-the-works/</link>
		<comments>http://www.sinneb.net/2011/07/new-synth-in-the-works/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 09:09:19 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[newsynth]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=386</guid>
		<description><![CDATA[and here&#8217;s an audiofile with a sneak preview of one of the VCO&#8217;s. vco1_test1 This sawtooth is generated through an orange drop capacitor (sounded better then its wima counterpart) in a 100% analog sound path. Reset pulses are generated by an Arduino and the rise of the sawtooth waveform is controlled by a MCP4921 DAC. [...]]]></description>
			<content:encoded><![CDATA[<p>and here&#8217;s an audiofile with a sneak preview of one of the VCO&#8217;s.</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/07/vco1_test1.wav">vco1_test1</a></p>
<p>This sawtooth is generated through an orange drop capacitor (sounded better then its wima counterpart) in a 100% analog sound path. Reset pulses are generated by an Arduino and the rise of the sawtooth waveform is controlled by a MCP4921 DAC. Each frequencies requires an exact voltage to level out the sawtooth. I haven&#8217;t calibrated these voltages yet so the sawtooth isn&#8217;t very precise yet. I like the raw sound though!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/07/new-synth-in-the-works/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.sinneb.net/wp-content/uploads/2011/07/vco1_test1.wav" length="1155344" type="audio/wav" />
		</item>
		<item>
		<title>beta juno106 filter replacement!</title>
		<link>http://www.sinneb.net/2011/05/beta-filter/</link>
		<comments>http://www.sinneb.net/2011/05/beta-filter/#comments</comments>
		<pubDate>Mon, 09 May 2011 21:20:53 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[juno106]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=374</guid>
		<description><![CDATA[Juno-106 filter replacement (beta, sounds very ok!) by sinneb The filterpart, 4 pole low pass with resonance. Download LTSpice schematic file: juno106BetaFilterReplacement_FilterPart (pdf version) &#160; &#160; The exponential current source. Leave 10 ohm resistor out when connecting to filterpart. Download LTSpice schematic file: juno106BetaFilterReplacement_ExpoPart (pdf version) The VCA of this beta filter was built like the [...]]]></description>
			<content:encoded><![CDATA[<p><object width="100%" height="81" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F14964831" /><embed width="100%" height="81" type="application/x-shockwave-flash" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F14964831" allowscriptaccess="always" /></object> <span><a href="http://soundcloud.com/sinneb/juno-106-filter-replacement">Juno-106 filter replacement (beta, sounds very ok!)</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span></p>
<p><span><a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_FilterPart.png"><img class="alignnone size-full wp-image-380" title="juno106BetaFilterReplacement_FilterPart" src="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_FilterPart.png" alt="" width="447" height="241" /></a><br />
</span></p>
<p>The filterpart, 4 pole low pass with resonance. Download LTSpice schematic file:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_FilterPart.asc">juno106BetaFilterReplacement_FilterPart</a> (<a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_FilterPart.pdf">pdf version</a>)</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_ExpoPart.png"><img class="alignnone size-full wp-image-379" title="juno106BetaFilterReplacement_ExpoPart" src="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_ExpoPart.png" alt="" width="307" height="338" /></a></p>
<p>The exponential current source. Leave 10 ohm resistor out when connecting to filterpart. Download LTSpice schematic file:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_ExpoPart.asc">juno106BetaFilterReplacement_ExpoPart</a> (<a href="http://www.sinneb.net/wp-content/uploads/2011/05/juno106BetaFilterReplacement_ExpoPart.pdf">pdf version</a>)</p>
<p>The VCA of this beta filter was built like the schematic supplied by Mooger5 (check older posts). The redesigned VCA based on a LM13700 should work also (check older posts).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/05/beta-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;tuned&#8221; the LPF</title>
		<link>http://www.sinneb.net/2011/04/tuned-the-lpf/</link>
		<comments>http://www.sinneb.net/2011/04/tuned-the-lpf/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 14:10:30 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[juno106]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=366</guid>
		<description><![CDATA[Yesterday I tuned the LPF using my trusty old board o&#8217; potentiometers&#8230; Best sounding values came out like this: which I, after some thinking, recognized as the original values like in the JUNO6! Very nice! Just had to replace the 100pF capacitor with a 240pF capacitor like in the original. Only thing missing is the &#8220;mystery resistor&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I tuned the LPF using my trusty old board o&#8217; potentiometers&#8230;</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/IMG_20110425_153110.jpg"><img class="alignnone size-full wp-image-367" title="IMG_20110425_153110" src="http://www.sinneb.net/wp-content/uploads/2011/04/IMG_20110425_153110.jpg" alt="" width="500" height="236" /></a></p>
<p>Best sounding values came out like this:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/pole_proto2.png"><img class="alignnone size-full wp-image-368" title="pole_proto2" src="http://www.sinneb.net/wp-content/uploads/2011/04/pole_proto2.png" alt="" width="473" height="471" /></a></p>
<p>which I, after some thinking, recognized as the original values like in the JUNO6! Very nice! Just had to replace the 100pF capacitor with a 240pF capacitor like in the original. Only thing missing is the &#8220;mystery resistor&#8221; on the + input of the OTA to ground. For now I just left this res out.</p>
<p>A fitting frequency range for the filter should be achieved by a good control current. According to the IR3109 specifications, transconductance should range from 1µƱ &#8211; 10mƱ. The expo converter from the previous post delivers a current ranging from 70nA to 1.65mA which translate to a transconductance of 1.34µƱ to 31mƱ. Ok for now.</p>
<p>I made a mockup of the JUNO6 board and the IR3109 ic:</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/lm13700asIR3109.jpg"><img class="alignnone size-full wp-image-369" title="lm13700asIR3109" src="http://www.sinneb.net/wp-content/uploads/2011/04/lm13700asIR3109.jpg" alt="" width="519" height="486" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/04/tuned-the-lpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>working combination!</title>
		<link>http://www.sinneb.net/2011/04/working-combination/</link>
		<comments>http://www.sinneb.net/2011/04/working-combination/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 20:14:24 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[juno106]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=360</guid>
		<description><![CDATA[Got a working combination of the expo converter and the 1 pole low pass filter. Sounds nice, although the expo needs some tuning. listen: Juno106 1pole replacement filter, for now only cutoff by sinneb]]></description>
			<content:encoded><![CDATA[<p>Got a working combination of the expo converter and the 1 pole low pass filter. Sounds nice, although the expo needs some tuning.</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/prot1expo.png"><img class="alignnone size-full wp-image-361" title="prot1expo" src="http://www.sinneb.net/wp-content/uploads/2011/04/prot1expo.png" alt="" width="436" height="517" /></a></p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/prot1lpf.png"><img class="alignnone size-full wp-image-362" title="prot1lpf" src="http://www.sinneb.net/wp-content/uploads/2011/04/prot1lpf.png" alt="" width="500" height="415" /></a></p>
<p>listen:</p>
<p><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F14083021"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F14083021" type="application/x-shockwave-flash" width="100%"></embed></object>  <span><a href="http://soundcloud.com/sinneb/juno106-1pole-replacement">Juno106 1pole replacement filter, for now only cutoff</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/04/working-combination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>redesigned the expo converter, again</title>
		<link>http://www.sinneb.net/2011/04/redesigned-the-expo-converter-again/</link>
		<comments>http://www.sinneb.net/2011/04/redesigned-the-expo-converter-again/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 22:36:10 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[juno106]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=354</guid>
		<description><![CDATA[The output current of the expo converter is now (100nA &#60; Iabc &#60; 2mA) which means a more logarithmic response of the VCF, more like the IR3109. btw this is a one pole LP filter, not a two pole VCF sound like this now: Juno2poleFilter-v2 by sinneb and here&#8217;s the real 2 pole LP filter: [...]]]></description>
			<content:encoded><![CDATA[<p>The output current of the expo converter is now (100nA &lt; Iabc &lt; 2mA) which means a more logarithmic response of the VCF, more like the IR3109.</p>
<p>btw this is a one pole LP filter, not a two pole</p>
<p>VCF sound like this now:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="81" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13818820" /><embed type="application/x-shockwave-flash" width="100%" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13818820" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/sinneb/juno2polefilter-v2">Juno2poleFilter-v2</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span></p>
<p>and here&#8217;s the real 2 pole LP filter:</p>
<p><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13819735"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13819735" type="application/x-shockwave-flash" width="100%"></embed></object>  <span><a href="http://soundcloud.com/sinneb/juno2polefilter-v3-real2pole">Juno2poleFilter-v3-real2pole</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/04/redesigned-the-expo-converter-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2-pole LM13700 lowpass filter working?</title>
		<link>http://www.sinneb.net/2011/04/2-pole-lm13700-lowpass-filter-working/</link>
		<comments>http://www.sinneb.net/2011/04/2-pole-lm13700-lowpass-filter-working/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 12:34:52 +0000</pubDate>
		<dc:creator>arthur</dc:creator>
				<category><![CDATA[juno106]]></category>

		<guid isPermaLink="false">http://www.sinneb.net/?p=346</guid>
		<description><![CDATA[I&#8217;m not sure. Did a lot of prototyping and these are the results. Since I couldn&#8217;t figure out a proper way to calculate the cutoff frequency when using different current and resistor combination, I decided to use the default lowpass filter circuit from the LM13700 datasheet. Hooked my expo converter up to pin 1 (100nA [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure. Did a lot of prototyping and these are the results.</p>
<p>Since I couldn&#8217;t figure out a proper way to calculate the cutoff frequency when using different current and resistor combination, I decided to use the default lowpass filter circuit from the LM13700 datasheet.</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/lm13700_typical_lowpass.png"><img class="alignnone size-full wp-image-347" title="lm13700_typical_lowpass" src="http://www.sinneb.net/wp-content/uploads/2011/04/lm13700_typical_lowpass.png" alt="" width="488" height="321" /></a></p>
<p>Hooked my expo converter up to pin 1 (100nA &lt; Iabc &lt; 1.1mA) and started testing. The Vout of this pole is the Vin of the second pole. Unfortunately I only had 1 LM13700 working left, since I blew up all my other&#8217;s ;). I experimented a lot with different capacitor and resistor combination and the only ok sounding combination is a 1nF capacitor with 10K big and 220Ohm small resistors. Check the following sound files for the results:</p>
<p><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13789518"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F13789518" type="application/x-shockwave-flash" width="100%"></embed></object>  <span><a href="http://soundcloud.com/sinneb/juno2polefilter">Juno2polefilter</a> by <a href="http://soundcloud.com/sinneb">sinneb</a></span> </p>
<p>Oh, just for fun: a pic of the breadboard in action</p>
<p><a href="http://www.sinneb.net/wp-content/uploads/2011/04/DSC8882.jpg"><img class="alignnone size-full wp-image-348" title="_DSC8882" src="http://www.sinneb.net/wp-content/uploads/2011/04/DSC8882.jpg" alt="" width="500" height="332" /></a></p>
<p>left bottom: BA6110 based VCA. Right top: dual 2N3906 based expo converter. Right bottom: Only remaining LM13700 configured as a 2-pole lowpass filter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinneb.net/2011/04/2-pole-lm13700-lowpass-filter-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

