ESP32 KY-037 High Sensitivity Sound Detection Module
The KY-037 is a high sensitivity sound detection module featuring an electret condenser microphone and an LM393 comparator. It offers both analog and digital outputs, making it suitable for various sound detection applications, including voice-activated projects and sound level monitoring.
🔗 Quick Links
🛒 KY-037 Price
ℹ️ About KY-037 High Sensitivity Sound Detection Module
The KY-037 High Sensitivity Sound Detection Module is equipped with an electret condenser microphone and an LM393 comparator to detect sound levels in the environment. It provides both analog and digital outputs: the analog output gives a voltage proportional to the sound intensity, while the digital output goes high when the sound exceeds a user-defined threshold, adjustable via an onboard potentiometer. This module is ideal for projects involving sound detection, such as voice-activated systems, sound level monitoring, and interactive sound installations.⚙️ KY-037 Sensor Technical Specifications
Below you can see the KY-037 High Sensitivity Sound Detection Module Technical Specifications. The sensor is compatible with the ESP32, operating within a voltage range suitable for microcontrollers. For precise details about its features, specifications, and usage, refer to the sensor’s datasheet.
- Type: module
- Protocol: Analog/Digital
- Operating Voltage: 3.3V to 5V
- Microphone Sensitivity: -42 ±3 dB
- Current Consumption: ~0.5 mA
- Dimensions: 15mm x 36mm
🔌 KY-037 Sensor Pinout
Below you can see the pinout for the KY-037 High Sensitivity Sound Detection Module. The VCC
pin is used to supply power to the sensor, and it typically requires 3.3V or 5V (refer to the datasheet for specific voltage requirements). The GND
pin is the ground connection and must be connected to the ground of your ESP32!
+V:
Connects to the power supply, typically 3.3V or 5V.GND:
Connects to the ground of the circuit.D0 (Digital Output):
Outputs a high signal when the detected sound exceeds the set threshold.A0 (Analog Output):
Provides an analog voltage proportional to the sound intensity.
🧵 KY-037 Wiring with ESP32
Below you can see the wiring for the KY-037 High Sensitivity Sound Detection Module with the ESP32. Connect the VCC pin of the sensor to the 3.3V pin on the ESP32 or external power supply for power and the GND pin of the sensor to the GND pin of the ESP32. Depending on the communication protocol of the sensor (e.g., I2C, SPI, UART, or analog), connect the appropriate data and clock or signal pins to compatible GPIO pins on the ESP32, as shown below in the wiring diagram.
+V:
Connect to ESP323.3V
.GND:
Connect to ESP32GND
.D0 (Digital Output):
Connect to an ESP32 GPIO pin configured as a digital input (e.g.,GPIO15
).A0 (Analog Output):
Connect to an ESP32 ADC pin (e.g.,GPIO34
).
🛠️ KY-037 High Sensitivity Sound Detection Module Troubleshooting
This guide outlines a systematic approach to troubleshoot and resolve common problems with the . Start by confirming that the hardware connections are correct, as wiring mistakes are the most frequent cause of issues. If you are sure the connections are correct, follow the below steps to debug common issues.
❌ No Response from Sensor
Issue: The sensor does not respond to sound.
Solutions:
- Ensure the module is properly powered with the correct voltage (3.3V or 5V).
- Verify all connections are secure and correctly wired.
- Adjust the sensitivity using the onboard potentiometer.
- Check if the microphone is functioning correctly and not obstructed.
⚠️ False Triggering
Issue: The sensor triggers without any sound input.
Solutions:
- Reduce the sensitivity using the potentiometer to prevent false triggers.
- Ensure the environment is free from electrical noise or interference.
- Check for any loose connections or faulty components on the module.
💻 Code Examples
Below you can find code examples of KY-037 High Sensitivity Sound Detection Module with ESP32 in several frameworks:
If you encounter issues while using the KY-037 High Sensitivity Sound Detection Module, check the Common Issues Troubleshooting Guide.

ESP32 KY-037 Arduino IDE Code Example
Fill in your main
Arduino IDE sketch file with the following code to use the KY-037 High Sensitivity Sound Detection Module:
int analogPin = A0; // Analog output of the sensor
int digitalPin = 7; // Digital output of the sensor
int ledPin = 13; // Onboard LED
void setup() {
pinMode(analogPin, INPUT);
pinMode(digitalPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
Serial.println("KY-037 Sound Detection Module Test");
}
void loop() {
int analogValue = analogRead(analogPin);
int digitalValue = digitalRead(digitalPin);
if (digitalValue == HIGH) {
digitalWrite(ledPin, HIGH); // Turn ON the LED when sound is detected
} else {
digitalWrite(ledPin, LOW); // Turn OFF the LED when no sound is detected
}
Serial.print("Analog Value: ");
Serial.println(analogValue);
delay(1000);
}
This Arduino code initializes the analog and digital pins connected to the KY-037 sensor. It reads the analog value to monitor sound intensity and uses the digital output to control the onboard LED, indicating when the sound level exceeds the set threshold. The analog values are printed to the serial monitor every second.
Connect your ESP32 to your computer via a USB cable, Ensure the correct Board and Port are selected under Tools, Click the "Upload" button in the Arduino IDE to compile and upload the code to your ESP32.

ESP32 KY-037 ESP-IDF Code ExampleExample in Espressif IoT Framework (ESP-IDF)
If you're using ESP-IDF to work with the KY-037 High Sensitivity Sound Detection Module, here's how you can set it up and read data from the sensor. Fill in this code in the main
ESP-IDF file:
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/adc.h"
#include "driver/gpio.h"
#define ANALOG_PIN ADC1_CHANNEL_6 // GPIO34
#define DIGITAL_PIN GPIO_NUM_15
void app_main(void) {
adc1_config_width(ADC_WIDTH_BIT_12);
adc1_config_channel_atten(ANALOG_PIN, ADC_ATTEN_DB_11);
gpio_set_direction(DIGITAL_PIN, GPIO_MODE_INPUT);
printf("KY-037 Sound Detection Module Test\n");
while (1) {
int raw = adc1_get_raw(ANALOG_PIN);
float voltage = raw * (3.3 / 4095.0);
int digital_state = gpio_get_level(DIGITAL_PIN);
printf("Analog Voltage: %.2f V, Sound Detected: %s\n", voltage, digital_state ? "Yes" : "No");
vTaskDelay(pdMS_TO_TICKS(1000));
}
}
This ESP-IDF code configures GPIO34 as an analog input and GPIO15 as a digital input for the KY-037 sound sensor. It reads the analog voltage and digital state, printing the voltage and whether a sound is detected to the console every second.
Update the I2C pins (I2C_MASTER_SDA_IO
and I2C_MASTER_SCL_IO
) to match your ESP32 hardware setup, Use idf.py build to compile the project, Use idf.py flash to upload the code to your ESP32.

ESP32 KY-037 ESPHome Code Example
Fill in this configuration in your ESPHome YAML configuration file (example.yml
) to integrate the KY-037 High Sensitivity Sound Detection Module
sensor:
- platform: adc
pin: GPIO34
name: "KY-037 Sound Sensor Analog"
update_interval: 1s
filters:
- multiply: 3.3
- lambda: |-
return x * 1000; // Convert to millivolts
binary_sensor:
- platform: gpio
pin:
number: GPIO15
mode: INPUT_PULLUP
name: "KY-037 Sound Sensor Digital"
This ESPHome configuration sets up the KY-037 sensor with both an analog and digital sensor. The analog value from GPIO34 is converted to millivolts, while the digital sensor on GPIO15 acts as a binary sensor to indicate sound detection.
Upload this code to your ESP32 using the ESPHome dashboard or the esphome run
command.

ESP32 KY-037 PlatformIO Code Example
For PlatformIO, make sure to configure the platformio.ini
file with the appropriate environment and libraries, and then proceed with the code.
Configure platformio.ini
First, your platformio.ini
should look like below. You might need to include some libraries as shown. Make sure to change the board to your ESP32:
[env:esp32]
platform = espressif32
board = esp32dev
framework = arduino
ESP32 KY-037 PlatformIO Example Code
Write this code in your PlatformIO project under the src/main.cpp
file to use the KY-037 High Sensitivity Sound Detection Module:
#include <Arduino.h>
#define ANALOG_PIN 34
#define DIGITAL_PIN 15
void setup() {
pinMode(DIGITAL_PIN, INPUT_PULLUP);
Serial.begin(115200);
Serial.println("KY-037 Sound Sensor Test");
}
void loop() {
int raw_value = analogRead(ANALOG_PIN);
float voltage = raw_value * (3.3 / 4095.0) * 1000; // Convert to millivolts
int digital_value = digitalRead(DIGITAL_PIN);
Serial.printf("Analog Voltage: %.2f mV, Digital State: %s\n", voltage, digital_value ? "Sound Detected" : "No Sound");
delay(1000);
}
This PlatformIO code sets up GPIO34 as an analog input and GPIO15 as a digital input for the KY-037 sensor. It reads the analog voltage and digital state, logging the voltage and sound detection status to the serial monitor every second.
Upload the code to your ESP32 using the PlatformIO "Upload" button in your IDE or the pio run --target upload
command.

ESP32 KY-037 MicroPython Code Example
Fill in this script in your MicroPython main.py file (main.py
) to integrate the KY-037 High Sensitivity Sound Detection Module with your ESP32.
import machine
import time
ANALOG_PIN = machine.ADC(machine.Pin(34))
ANALOG_PIN.atten(machine.ADC.ATTN_11DB)
DIGITAL_PIN = machine.Pin(15, machine.Pin.IN, machine.Pin.PULL_UP)
while True:
analog_value = ANALOG_PIN.read()
voltage = (analog_value / 4095) * 3300 # Convert to millivolts
digital_value = DIGITAL_PIN.value()
print("Analog Voltage:", voltage, "mV", "| Digital State:", "Sound Detected" if digital_value == 1 else "No Sound")
time.sleep(1)
This MicroPython script configures GPIO34 as an ADC input and GPIO15 as a digital input for the KY-037 sensor. It continuously reads the sensor values and prints the voltage and sound detection state every second.
Upload this code to your ESP32 using a MicroPython-compatible IDE, such as Thonny, uPyCraft, or tools like ampy
.
Conclusion
We went through technical specifications of KY-037 High Sensitivity Sound Detection Module, its pinout, connection with ESP32 and KY-037 High Sensitivity Sound Detection Module code examples with Arduino IDE, ESP-IDF, ESPHome and PlatformIO.