MR. SWARTZ
  • Home
    • Small Gas Engines II
    • Introduction to Welding
    • Metals Home
    • Mechatronics >
      • Relay
      • Sound Sensor
    • Small Gas Engines
    • Auto Tech I
  • Parents
  • Architecture and Design
    • Title Blocks
  • Engineering Principles
  • Bridgeway Cardinal Fab
  • Design Process
  • RFID

Sound Sensor

Picture
Picture
Picture
Picture
Picture

// www.elegoo.com // 2018.10.24 /* LED1 should be lit, showing power. LED2 indicates sound input, and the sensitivity is adjusted by potentiometer. There is a tiny screw on the blue potentiometer block that you can use for adjustment. Turning that clockwise lowers the potentiometer value, while counter-clockwise raises the potentiometer value. Use the potentiometer to adjust the Sound Sensor sensitivity. Turn the potentiometer several rotations until you see the LED2 extinguish (or just faintly blink). This might be slightly greater than 500, if you are also watching Serial Monitor (inital adjustment), or, Serial Plotter (the latter is prefererd for observation). Special thanks to user CRomer, for his input and hard work! */ int sensorAnalogPin = A0; // Select the Arduino input pin to accept the Sound Sensor's analog output int sensorDigitalPin = 7; // Select the Arduino input pin to accept the Sound Sensor's digital output int analogValue = 0; // Define variable to store the analog value coming from the Sound Sensor int digitalValue; // Define variable to store the digital value coming from the Sound Sensor int Led13 = 13; // Define LED port; this is the LED built in to the Arduino (labled L) // When D0 from the Sound Sensor (connnected to pin 7 on the // Arduino) sends High (voltage present), L will light. In practice, you // should see LED13 on the Arduino blink when LED2 on the Sensor is 100% lit. void setup() { Serial.begin(9600); // The IDE settings for Serial Monitor/Plotter (preferred) must match this speed pinMode(sensorDigitalPin,INPUT); // Define pin 7 as an input port, to accept digital input pinMode(Led13,OUTPUT); // Define LED13 as an output port, to indicate digital trigger reached } void loop(){ analogValue = analogRead(sensorAnalogPin); // Read the value of the analog interface A0 assigned to digitalValue digitalValue=digitalRead(sensorDigitalPin); // Read the value of the digital interface 7 assigned to digitalValue Serial.println(analogValue); // Send the analog value to the serial transmit interface if(digitalValue==HIGH) // When the Sound Sensor sends signla, via voltage present, light LED13 (L) { digitalWrite(Led13,HIGH); } else { digitalWrite(Led13,LOW); } delay(50); // Slight pause so that we don't overwhelm the serial interface }

Proudly powered by Weebly
  • Home
    • Small Gas Engines II
    • Introduction to Welding
    • Metals Home
    • Mechatronics >
      • Relay
      • Sound Sensor
    • Small Gas Engines
    • Auto Tech I
  • Parents
  • Architecture and Design
    • Title Blocks
  • Engineering Principles
  • Bridgeway Cardinal Fab
  • Design Process
  • RFID