Wish List 0

Sound Detection Module Sensor For Intelligent Vehicle Compatible With Arduino

Rs. 54.00 Rs. 61.00

  • Product Code: SEN-SOUND
  • SKU -
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
1. LM393 Sound Detection Sensor Module for Arduino detects whether sound has exceeded a threshold value. The sound is detected via microphone and fed into an LM393 op-amp.
The sound level setpoint is adjusted via an onboard potentiometer. When the sound level exceeds the set point, an LED on the module is illuminated and the output is sent low.

>> Note: 
         This sensor only recognizes the availability of sound cannot identify the size of the sound or the specific frequencies of sound.

  Features:
     -Signal output indication.
     -The output is digital.
     -Single channel signal output.
     -With the retaining bolt hole, convenient installation.
     -Output low level and the signal light when there is sound.

SPECIFICATIONS:

   Operating Voltage(VDC)     :3.3 to 5

   IC Chip                                  :LM393

   Shipment Weight                :0.085 kg

   Shipment Dimensions        :5 × 3 × 2 cm

OVERVIEW:

    -Working voltage:DC 3.3-5V.

    -IC Chip: LM393

    -Signal output indication.

    -The output is digital.

    -Single channel signal output.

    -With the retaining bolt hole, convenient installation.

    -Output low level and the signal light when there is sound.

PACKAGE INCLUDES:

1 PCS x Sound Detection Module Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electronicshub.org/interfacing-sound-sensor-with-arduino/

const int ledPin = 12;

const int soundPin = 7;


int soundVal = 0;


void setup ()

{

  pinMode (ledPin, OUTPUT);

  pinMode (soundPin, INPUT);

}

 

void loop ()

{

  soundVal = digitalRead(soundPin);

  if (soundVal == LOW)

  {

    digitalWrite(ledPin, HIGH);

  }

  else

  {

    digitalWrite(ledPin, LOW);

  }

 }

15 DAYS

Write a review

Please login or register to review