Electronic – arduino – Self made microphone burns arduino

arduinomicrocontrollermicrophonesoldering

I'm very new to electrical engineering and I'm trying to read microphone input with arduino nano. I've made a separate microphone module (based on this example) and plugged it into aruino like this:

Connection
Unfortunately it was the last time my arduino was working. It's no longer displayed as a connection, and acts "randomly", so I think my microphone toasts controller for some reason. Here are some more pictures and a scheme of my mic module, could someone explain what am I doing wrong?

schematic

simulate this circuit – Schematic created using CircuitLab

R1 – CR1/4W 10 (brown,black,black,gold)

R2 – CR1/4W 2KO (red,black,red,gold)

I have no education in electrical engineering, so I'm not sure about the corectness of this schema of units, just pasted what's written on the pack

Back
Front

Best Answer

I did this a very long time ago, so I might forget something. However, I'm almost completely sure I used resistors in the Kohm range.

After googling a bit I found this post, which might help you get a better understanding of how to use your microhpone.

However, I have noticed you intend to connect your microphone to the analog input of an Arduino. So remember to polarize the analog output to around 2.5V (maybe employing an Operational AMplifier to avoid distortion?) in order to avoid loosing part of your signal (if it is too close to 0V or 5V).


I have checked the circuit you provided. Indeed, it uses 10Kohm and 4.7Kohm to polarize the microphone.

That is, your Arduino gets fried because the 10ohm resistor draws relatively high currents (in the order of 500mA) which Arduino is not designed to handle.

I'm sure that once you replace your resistor your circuit will work fine :) Good luck!