• First tests

    Csiszár Attila05/30/2017 at 20:59 0 comments

    After some research on electric mics I created a simple circuit on breadboard to connect it to an Arduino.

    An electric mic has typically 2 pins, the negative rail is always connected to the case which are clearly visible. All you need is to check out the bottom of the mic, and find traces of connections to the case.

    I'm not quite too sure about the correct resistor value between 5V and the mic + side. Most schematics use 2K resistors, so I stick to it temporary. I need more research on this.

    I also added a small capacitor between mic + side and output which is recommended for removing the voltage source's DC signal. Which reminds me about reading more about DC + low pass filtering.

    Connecting output to one of the analog ports and using the Arduino IDE Serial plotting function I was able to see some signal changes using this code:

    void setup() {
      Serial.begin(9600);
    }
    
    void loop() {
      Serial.println(analogRead(A0));
    }
    So the mic is working.Time to build an amplifier.

  • Starts - The basics

    Csiszár Attila05/30/2017 at 20:56 0 comments

    During desoldering some old junk electronics I found a never seen component and after some googling It turned out to be an electric microphone.

    Further research revealed that its super easy to use: all you need a power supply - around 5V - with some amplification and you can have a fully functional microphone.

    But really that how an electric mic works - it should be an another research topic.