Contents

Interfacing MAX4466 Microphone Module with Arduino

MAX4466 Module Features

The MAX4466 sensor is used to detect ambient sounds. This module has a built-in amplifier.

Note

The module output is not zero in silent mode and has 1.25V offset.

MAX4466 Electret Microphone Pinout

This sensor has 3 pins:

  • VCC: Module power supply – 3-5.5 V
  • GND: Ground
  • OUT: Digital output data to the microcontroller

You can see pinout of this module in the image below.

You can download the datasheet of this module here.

Required Materials

Hardware Components

Arduino UNO R3 × 1
MAX4466 Microphone Module × 1
Male to Female jumper wire × 1

Software Apps

Arduino IDE

Interfacing MAX4466 Module with Arduino

Step 1: Circuit

The following circuit shows how you should connect Arduino to MAX4466 module. Connect wires accordingly.

Step 2: Code

Upload the following code to your Arduino.
/*
  modified on Sep 8, 2020
  Modified by MohammedDamirchi from Arduino Examples
  
Home
*/ // the setup routine runs once when you press reset: void setup() { // initialize serial communication at 9600 bits per second: Serial.begin(9600); } // the loop routine runs over and over again forever: void loop() { // read the input on analog pin 0: int sensorValue = analogRead(A0); // print out the value you read: Serial.println(sensorValue); }
After running the code, you will see the following image in the serial output.
Liked What You See?​
Get Updates And Learn From The Best​

Leave a Reply

Your email address will not be published. Required fields are marked *