evantee
Published © GPL3+

Yell back

If you yell at this it will yell back

BeginnerWork in progress206
Yell back

Things used in this project

Story

Read more

Schematics

img_3545_JUkz7MnVDs.JPG

Code

code

Arduino
code
int Br=1 ;
int yell =8;

void setup() {
  // put your setup code here, to run once:
  pinMode(yell,OUTPUT);
Serial.begin(9600);

}

void loop(){int val;
      val=analogRead(0);   //connect mic sensor to Analog 0
      Serial.print("Sound=");
      Serial.println(val,DEC);
      
     
      if(val>=540)
      {
        digitalWrite(yell, HIGH);
      }
      else
      {
        digitalWrite(yell, LOW);
      }
      delay(100);
}

Credits

evantee
3 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.