Skip to main content

Let's Build a Music Player!

Digital Music Player's are one of the many sensational devices that were developed in the 20th century. They have been around for a while now and have become a part of our life. In the last few years, they have been integrated within Smart Phones and hence, have reached the masses. Now, Let us try to dive into knowing how these devices work and I guarantee that we all would be fascinated by the kind of engineering which goes into making these magic boxes. There are various topics which must be covered in order to build our own music player and so there will be several blogs to build a SOUND foundation.
Now let us make a list of the required components and then we will walk through each of them in the upcoming blogs. There are 3 basic parts which are required to build a device which can output Audio:-

  • Storage Medium.
  • Micro-controller.
  • Audio Output device.
We will store the required music file onto a storage medium as the onboard memory on a microcontroller is low. Then we need to take the data from the Storage device and transfer it to the Audio Output device after processing. Now we need to choose a storage medium that is cheap as well as easily available and what can be a better choice than SD cards in these respects. So we will be using SD cards to store our music files as they are a widely popular storage option. Moving on to the Microcontroller, we will be needing quite a bit of processing power and so an ARM MCU would be the best choice available. Since we will also be concentrating on making the Player as cheap as possible, we will go forward with Stm32f103 which is the cheapest available ARM development board. Now we need to get an audio output device which is the easiest of all, get any speaker, headphone, earphone and the third part is over! So we have got the main components but still, there are a few small materials remaining which are needed. So, go and get them at any online store.
  • Breadboard.
  • Single-core wires.
  • Sd card module for the breadboard.
  • Ftdi programmer.




In the next blog on electrovate, we will start the real part of the project and will get our hands on with the sd cards and look how these tiny electronic devices store a ton of data and how to interface with them. This series is intended for the people who have worked with microcontrollers and if anyone who has not even heard about them should first get the basics right! 


Comments

Popular posts from this blog

SD-CARD

This Post marks the beginning of our quest to develop a simple Music player. SD stands for Secure digital and these small devices have been around for a while now. They contain flash memory and a memory controller which is given instruction by the main MCU. So our main objective here is to understand how sd cards work and how to interface them with a microcontroller. As to understand the working of SD card we need to dive into the world of transistors and bits! The Sd card contains solid-state memory also known as the flash memory which is a type of EEPROM i.e  Electronically Erasable Programmable Read Only Memory .  Flash memory stores information in an array of memory cells made from  floating-gate transistors . These transistors are used in different topologies as to store each bit. We will not program each bit individually as it will be time-consuming as well as an inefficient way to store the data. As to move to a higher level of abstraction, we need a way to ...

Automated Outdoor Lighting

This Project enables a person to make any Outdoor Lighting Automated i.e to switch On/Off according to the sunlight outside. If it is dark outside then the light will turn On and if it is daytime then it will automatically switch Off. This can be very useful for all Outdoor Lighting of various commercial buildings as well as for residential buildings. This can also be implemented in Vehicles which will automatically turn their lights On.  Our aim can be achieved by designing a proper transistor circuit and using a relay with it to control the high voltage network. T he Requirements Are: 1:- Bipolar Transistor(Bc 547) 2:-5/6v Spdt Relay 3:-Resistors(Around 4.5k And 3k Ohm) 4:-Light Dependent Resistor 5:-5v Power Supply 6:-Pcb For Soldering Things Together 7:-Multimeter          CIRCUIT AND EXPLANATION The project involves the use of a transistor as a switch to make the outdoor light on/off. As we know that transistor can be used in three diffe...