How to convert 2 channel audio output into one 3.5mm jack - Social Sound Design most recent 30 from http://socialsounddesign.com 2013-05-24T08:29:14Z http://socialsounddesign.com/feeds/question/15221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://socialsounddesign.com/questions/15221/how-to-convert-2-channel-audio-output-into-one-3-5mm-jack How to convert 2 channel audio output into one 3.5mm jack Michael C 2012-08-29T18:31:56Z 2013-05-14T14:22:01Z <p>Hi, I'm building my own Bluetooth audio receiver using a Bluetooth module 2.1 with A2DP, so I can connect the receiver (with internal power) to any set of speakers that has a 3.5mm jack, then play music via any Bluetooth device like iPhone or PC.</p> <p>I got the Bluetooth module wired up and can now be paired with any A2DP enabled device, the issues is, the Bluetooth module has output connectors for 2 audio channels: Left Positive, Left Negative, Right Positive, and Right Negative, my question is how do I connect the 2 channels to a female 3.5mm jack? do I need something like a summing box (which I don't really understand yet), or is there a simple way to solve this? I hope to keep the entire receiver small.</p> <p>Thank you. </p> http://socialsounddesign.com/questions/15221/how-to-convert-2-channel-audio-output-into-one-3-5mm-jack/15223#15223 Answer by EMV for How to convert 2 channel audio output into one 3.5mm jack EMV 2012-08-29T19:13:09Z 2012-08-31T19:13:08Z <p>Actually, the bluetooth module probably has left signal, left ground, right signal and right ground. Positive and negative terminals are only seen on equipment handling balanced signals, which anything with bluetooth doesn't do.</p> <p>The standard way is the following:</p> <ul> <li>left signal -> tip</li> <li>right signal -> ring</li> <li>left ground -> sleeve</li> <li>right ground -> sleeve</li> </ul> <p>Or just cut the cinch connectors off of a standard $3 stereo cinch to 3,5mm jack cable. Shielding = ground, Center core = signal.</p> <hr> <p><strong>EDIT: The above is wrong.</strong></p> <p>It seems I was wrong, and the output is actually balanced. Your module seems very similar to this one: <a href="http://www.sparkfun.com/datasheets/Wireless/Bluetooth/WT32_Datasheet-1.pdf" rel="nofollow">http://www.sparkfun.com/datasheets/Wireless/Bluetooth/WT32_Datasheet-1.pdf</a></p> <p>And in there it says the following: </p> <blockquote> <p>AUDIO_OUT_P_RIGHT and AUDIO_OUT_N_RIGHT </p> <p>Right channel audio output. The au dio output lines should be routed differentially to either the speakers or to the output amplifier, depe nding on whether or not a single-ended signal is required. Use low impedance ground plane dedicated for the audio signals. </p> <p>AUDIO_OUT_P_LEFT and AUDIO_OUT_N_LEFT </p> <p>Left channel audio output. The same guidelines apply to this section as discussed previously. </p> </blockquote> <p>You could try to put both negative pins and check if that also shuts down the module (probably, given your earlier result). If not, that could be your way to do this. Alternatively, you could ignore the negative terminals, and just connect the positive ones and the ground of the board but this is a bit of a hack:</p> <ul> <li>left positive -> tip</li> <li>right positive -> ring</li> <li>ground -> sleeve</li> </ul> <p>Note that this will leave you with half the signal amplitude, and possibly a degraded signal.</p> <p>To do it properly, you need a circuit that converts between balanced and unbalanced, also called a balun, or, in electronic terms, a differential to single ended circuit. You can do this with transformers (http://www.jensen-transformers.com/faqs.html#faq4), there are IC's to do this, or circuits with an op-amp that require a bit more electronics knowledge, like this one: <a href="http://www.ecircuitcenter.com/Circuits/adcin_diff_se/adcin_diff_se1.htm" rel="nofollow">http://www.ecircuitcenter.com/Circuits/adcin_diff_se/adcin_diff_se1.htm</a> or the stuff that's discussed here: <a href="http://www.electro-tech-online.com/general-electronics-chat/92142-differential-single-ended-output-2.html" rel="nofollow">http://www.electro-tech-online.com/general-electronics-chat/92142-differential-single-ended-output-2.html</a></p> <p>More about the transformer way of doing this (note that they describe mono signals): <a href="http://www.jensen-transformers.com/an/an003.pdf" rel="nofollow">http://www.jensen-transformers.com/an/an003.pdf</a></p>