Analog Sound Sensor Microphone Module For Arduino
Rs. 70.00 Rs. 80.00
- Brand: http://www.flyrontech.com/eproducts/84.html
- 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: | |
IC Chip | LM386 |
Operating Voltage (VDC) | 5 |
Signal Amplitude | Vcc/2 |
OVERVIEW:
-Detectable sound signal size
-Built-in filter-rectifier circuit, DC signal output
-Good sensitivity, built-in amplifier circuit, adjustable gain
-Voltage signal for sound intensity can be obtained by AD conversion
-Analog voltage signal output, signal amplitude VCC/2
-Compatible for Arduino sensor interface.
PACKAGE INCLUDES:
1 PCS x Sound Sensor Microphone Module For Arduino
http://www.flyrontech.com/eproducts/84.html
//SOURCE CODE TAKEN FORM BELOW LINK
//https://wiki.dfrobot.com/Analog_Sound_Sensor_SKU__DFR0034
void setup()
{
Serial.begin(9600); // open serial port, set the baud rate to 9600 bps
}
void loop()
{
int val;
val=analogRead(0); //connect mic sensor to Analog 0
Serial.println(val,DEC);//print the sound value to serial
delay(100);
}
15 days