![](https://electroboat.in/uploads/media/2024/612e1atqf0L__AC_UF1000,1000_QL80_.jpg)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-detection-addon.jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-sensor-module.jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/612e1atqf0L__AC_UF1000,1000_QL80_.jpg&width=175&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-detection-addon.jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-sensor-module.jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/612e1atqf0L__AC_UF1000,1000_QL80_.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-detection-addon.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sound-sensor-module.jpg&width=300&quality=80)
SOUND SENSOR MODULE
A sound sensor is defined as a module that detects sound waves through its intensity and converting it to electrical signals.
₹ 41 ₹59
59
![](https://electroboat.in/assets/front_end/classic/images/cod_logo.png)
![](https://electroboat.in/assets/front_end/classic/images/cancelable.png)
![](https://electroboat.in/assets/front_end/classic/images/returnable.png)
Made In : | India |
Add FAQ
A sound sensor module is a device designed to detect and measure sound levels. It's commonly used in various applications such as noise detection, sound-activated projects, or even in security systems. Here's a brief overview of its main components and functionalities:
-
Microphone: This is the primary component that picks up sound waves and converts them into electrical signals. Most sound sensors use an electret condenser microphone for this purpose.
-
Amplifier: The electrical signal from the microphone is usually very weak, so it's amplified to a more manageable level by the amplifier circuit.
-
Analog-to-Digital Converter (ADC): In some sound sensor modules, the amplified analog signal is converted into a digital signal that can be processed by microcontrollers or other digital systems.
-
Comparator Circuit: This part of the module compares the sound level to a predefined threshold. If the sound level exceeds this threshold, it triggers an output signal.
-
Output Pins: The sensor typically has output pins that provide signals to external devices. These can include digital output (for triggering actions) or analog output (for monitoring sound levels).
-
Sensitivity Adjustment: Many modules come with a potentiometer or other means to adjust the sensitivity of the sound detection, allowing you to fine-tune the module for different environments or requirements.
-
Power Supply: The module requires a power source, usually operating at a low voltage like 3.3V or 5V.
Applications:
- Noise Level Monitoring: To measure and monitor environmental noise.
- Sound-Activated Switches: To turn on or off devices based on sound levels.
- Security Systems: To detect unusual sounds or alarms.
- Interactive Projects: In educational and hobbyist projects to create sound-responsive gadgets.
Do you have a specific project or application in mind for using a sound sensor module?
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the GPIO pin for the sound sensor's digital output
SENSOR_PIN = 17 # Change this based on your wiring
# Set up the GPIO pin as an input pin
GPIO.setup(SENSOR_PIN, GPIO.IN)
# Function to monitor sound
def monitor_sound():
print("Monitoring for sound...")
try:
while True:
# Read the value from the sound sensor's digital output (0 or 1)
sound_detected = GPIO.input(SENSOR_PIN)
# If the sensor detects sound, it will output 1 (HIGH)
if sound_detected == GPIO.HIGH:
print("Sound detected!")
else:
print("No sound detected.")
time.sleep(1) # Delay for 1 second
except KeyboardInterrupt:
print("Program interrupted. Cleaning up...")
finally:
GPIO.cleanup() # Clean up GPIO settings
# Run the function to monitor sound
monitor_sound()
0 Reviews For this Product
![](https://electroboat.in/uploads/seller/electroboat_logo3.jpeg)