Skip to main content

Adding some speakers, part 2

I added the audio transistors.

Before diving into this modification, I wanted to see how deteriorated the sound is when you try to link everything on the same power supply WITHOUT transistors. So I made this little video. You can hear the difference !



First, I noticed that my three little wires (on the output of the VS1053) were badly soldered and caused a short-circuit somewhere. So I removed them, and replaced them with a naked Jack plug. (I took it from a selfie stick. True story. These selfie sticks have an audio Jack plug to be able to take a shot from a button near the hand, that acts just like a button from headphones with mic. End of the story, back to business :p )

I wired the output of the VS1053 to the input of the transformers, and I wired the output of the transformers to the input of the PAM8403 (the amplifier). Since on the input and on the output, they have common ground between the two channels, I kept the common ground. You can see a rough scheme below (the "Audio scheme" on the bottom).

I also replaced the power source I soldered on the PAM8403 (the amplifier) by a nice socket.
Then, I wired with pluggable wires the power input of the PAM8403 with the one on the VS1053 (which is also the one on the ESP8266), so that the 3 components are powered in parallel by the same power input (the USB from the ESP8266 actually). That's the "Power scheme" on the top you can see below.


At first, I tried to put these audio transformers without any special care, and I placed them very close to each other. I noticed that there was a leakage of the left channel in the right channel, and the other way around too ! You could hear a little the left channel in the right speaker, and the right channel in the left speaker. I assumed that these transformers are not very well isolated and they leak their magnetic field into each other ! To avoid this magnetic field leakage, I placed them the farthest I could (like 6cm apart) and then I couldn't hear that audio leakage. Be careful of where you place your audio transformers !

Here's a little close-up :



Finally, putting it together, my speakers have quite a good punch !


After that, I have to wait for my microcontrollers to arrive to develop my interface. I de-soldered some push-buttons from the original radio, and two rotary knobs. I'm pretty sure the rotary knobs are delivering some Grey code, I don't know if I will use them. I mean, isn't is simpler to use an old scroll wheel from a mouse ? Each time you roll, it's like a button is pressed. You get 2 buttons, one for rolling forward, one for rolling backward. I'll think of this.

In the future, I'll have to do some work to make a beautiful front face, with room for the screen and for some buttons. But I'm afraid that won't be anytime soon (my microcontrollers haven't left China yet :(   )

See you !



Comments

Popular posts from this blog

Flashing an STM32 "Blue Pill"

Flashing this STM32 "Blue Pill" board took me 5 hours. I finally recieved my microcontrollers. I have at disposal : A brand new WeMos D1 Mini (it's a smallish NodeMCU) An Arduino Pro Mini (it acts just like a Leonardo, but it lacks some interesting pins sadly :(  ) An STM32F103C8T6, I'll call this the Blue Pill for short. The Arduino Pro Mini has an Arduino bootloader out-of-the-box, so  I could play with it directly. It's nice ! Still, it lacks the double Serial of the original Leonardo, and most importantly, there's no A4 and A5 pins, so libraries for I2C won't work without modification. But the Blue Pill needs more work. Basically, I followed the instructions on this site : http://wiki.stm32duino.com/index.php?title=Installation Since it's quite complicated, consider the following as a tutorial to set up your Blue Pill. I tried different things, the following has worked for me. Before doing anything software-related, while reading the B...

KaRadio DVT-01

I packed everything in my little case. It's really a mess in there, with cables flying around and every card floating, not fixed on the inside. But it looks quite cool ! I removed the old radio antenna to use its hole to pass my USB cable. Here's how it looks ! As you can see, I let the rotary knob (it's a simple angular potentiometer, in fact) from the amplifier out. It holds with a little nut that was provided with it. The buttons you can see are all fakes, they belonged to the old radio and I forgot to remove them (in fact they're simply glued to the back).  Maybe I'll find some tools to make a nice-looking front panel when my stuff arrives. I'll ask people around me to lend me their tools...  In the end, the radio would have a 20x4 LCD screen to display artist + title and useful infos (like the IP or the volume when you change it from the website, maybe). I think I'll need two more buttons to change the station. I won't...

Start of a blog - KaRadio Project

Hello everyone ! I decided to start a blog to keep a track of my electronics stuff I want to build. I found the KaRadio Project, that aims to build a webradio - you know, the thing, not the stream. A real object that connects to the Wi-Fi and plays your favourite radios. Some useful links : KaRadio's GitHub :  https://github.com/karawin/Ka-Radio The Hackaday Page :  https://hackaday.io/project/11570-wifi-webradio-with-esp8266-and-vs1053 The KaRadio Group on Facebook (very active !) :  https://www.facebook.com/groups/162949914181385/ As I tried a first prototype, I was really amazed what the main chip, the ESP8266, was capable of. So I decided to buy second-hand stuff in flea market to build a nice little webradio. For the moment, I have my prototype working, but most of the work lies ahead : adding control through a second microcontroller (MCU for short), adding buttons, pushing everything into a case, adding energy support... heh, I'm hyped ! Nonethele...