Skip to main content

Arduino Beginner Experiments: Arduino and Big Sound Sensor

HELLO THERE!!!


       How are you guys? I hope everyone is fine and good always. This week I would like share with you guys an experiment on arduino and big sound sensor (also known as sound sensor). The objective of this experiment to control a LED brightness by using the sound sensor.  So, without any delays, let's jump in to the experiment!!!!


HARDWARE:
1.Arduino UNO
2. LED(you can also use the LED in Arduino itself)

3.Big Sound Sensor

SOFTWARE:
1.Arduino IDE



CIRCUIT ASSEMBLY

1. Connect the LED to the Arduino. The long leg(+ve) to the pin 13(or any other digital pin) and the short leg(-ve) to GND
2. For the big sound let's refer to the image below:

   From the image shown, there are 4 pins, A0(analog pin), D0(digital pin), +(+ve pin), G(GND pin). So, we are going to use the analog pin in this experiment, the assembly is as follows:

SENSOR                   ARDUINO
A0              -------->    A0(analog input)
+                 -------->   5V
G               ----------> GND



CODING THE ARDUINO:

the code is shown as below:
int led = 13;//initializing variables. led is on pin 13(change according to your pin)
int spk = A0;//The big sound sensor is connected to analog pin A0(change according to your pin)
int val;// A variable to hold data

void setup() {
Serial.begin(9600);// serial communication at 9600 bps
pinMode(led,OUTPUT);//initializing the LED as an output


}

void loop() {
 val = analogRead(spk);//read the value of the sensor and keep it in the val variable
 Serial.println(val);//print the sensor value
 analogWrite(led,val);//lights up the led according to the sensor value


}


       Upload the code to your Arduino. Speak into the big sound sensor( shout,whisper :D) to see the led's response to the sound. You can also adjust the sensitivity of the sensor by adjusting the potentiometer on the sensor(the blue module on the sensor).

Well, that's all from me for this week guys. I hope to see you guys next week. Till then, HAPPY TINKERING!!!!



Comments

Popular posts from this blog

Arduino and Multi Function Shield: Pots,LEDs and buzzers

HELLO THERE!!!!!    How are you guys? I hope everyone is fine and in good mood always. This week, I continue my tinkerings with the Multi Function Shield. In this experiment, I used the potentiometer in the shield to control the LEDs in the shield. Without further wasting time, let's jump in straight to the experiment!! HARDWARE 1.ARDUINO UNO  2.MULTI-FUNCTION SHIELD SOFTWARE: 1. ARDUINO IDE CIRCUIT ASSEMBLY    The circuit assembly is fairly simple. Just attach the multi function shield on top of Arduino properly. Please attach the shield properly as failure to do so would cause the shield  not to function as intended. CODING THE ARDUINO: Let's refer to the multi-function shield image below: Referring to the image of the shield, it can be seen that the potentiometer (blue object near buttons) is connected to pin A0 (analog 0)     int pot = A0; //declaring the pot ...

Arduino and Keyes KY-017 Mercury Tilt Sensor

HELLO THERE!!!     How are you guys? I hope everyone is fine and good as always. I am back in tinkering after a few months of hiatus( busy stuff :) ). So, today i would like to share with you guys on KY-017, which is a Keyes Mercury Tilt Sensor. KY-017 Sensor KY-017      The picture above shows the KY-017 Sensor from Keyes. It has 3 pins, A ground, A vcc, and A signal pin. If you look closely, there is a mercury ball inside the bulb like object. The mercury ball acts like a switch for this sensor. KY-017 Working Procedure: 1. When the sensor is not tilted, the mercury ball will be at the bottom of the bulb. This will complete the circuit and turns on the LED of the sensor. The output that is sent through the signal pin will be LOW. 2.When the sensor is tilted, the mercury ball will be at the top of the bulb(near at the sharper end). This will complete break circuit and turns off the LED of the sensor. The output that is sent through t...

Mixing Color with RGB LED!!

HELLO THERE!!!     Hi everybody!! How are you guys? This week, I am going to share with you guys a fun experiment that I did during the weekends. The objective of this experiment is to use the RGB LED to output different colors. Without wasting further time, let's get into the experiment!! HARDWARE: 1.Arduino UNO 2. 3 Potentiometer 3. RGB LED ( I used the Keyes RGB LED) SOFTWARE: 1.Arduino IDE CIRCUIT ASSEMBLY:   By referring to the image below: The RGB LED has 4 pins, 1 GND, 1 pin each for the color red, green and blue. RGB LED                      ----------> ARDUINO  GND(- sign of the pin)                  GND R,G,B                                              Any Digital pin(I used pin 9,10 and 11) T...