[Hindi/Urdu] Arduino Tutorial Sound Sensor (with LED)

Descriptions:

Sound sensors can be used for a variety of things, one of them could be turning lights off and on by clapping. Today however we are going to use hook up the sound sensor to an array of LED lights which will beat with music, clapping or knocking.



Hardware Required:

- Arduino Board - https://goo.gl/g9sLdP
- Sound Sensor - https://goo.gl/Kki4UM
- LED
- 220 ohm Resistors
- Mini Breadboard - https://goo.gl/Bmqz5q
- Wires

Recommended site to buy the required hardware:


Connections :

Arduino Sound Detection Sensor
This module allows you to detect when sound has exceeded a set point you select.Sound is detected via a microphone and fed into an LM393 op amp.
The sound level set point is adjusted via an on board potentiometer. When the sound level exceeds the set point, an LED on the module is illuminated and the output is sent low.

Get the Code: 
int soundSensor = 2;
int LED = 3;

void setup() 
{

  pinMode (soundSensor, INPUT);
  pinMode (LED, OUTPUT);
}

void loop()
{
  int statusSensor = digitalRead (soundSensor);
  
  if (statusSensor == 1)
  {

Comments

  1. You're a thief! Labor thief! I reported your channel to YouTube Copyright Agent! Your channel will be shut down!

    ReplyDelete

Post a Comment

Popular posts from this blog

[Hindi / Urdu] Arduino Project Obstacle Avoiding Robot

[Hindi / Urdu] Arduino Tutorial LCD Display Control

[Hindi / Urdu] LED Sequential Control Simple Arduino Project