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
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