Creative creator
Published © CC BY-ND

Music reactive LED Strip

Music reactive LED Strips are great for lighting projects. You can make this with Arduino and also without Arduino.

BeginnerFull instructions provided2 hours5,011
Music reactive LED Strip

Things used in this project

Hardware components

Arduino NANO UTSOURCE:
×1
PCB Board UTSOURCE:
×1
9v Battery UTSOURCE:
×1
Female Header UTSOURCE:
×1
Heat Shrink Tube UTSOURCE:
×1
LED strip UTSOURCE:
×1
Different Values of Resistor UTSOURCE:
×1
Screw Terminal Block UTSOURCE:
×1
Sound Sensor UTSOURCE:
×1
IRFZ44N MOSFET UTSOURCE:
×1
BC547 Transistor UTSOURCE:
×1

Hand tools and fabrication machines

Soldering Iron UTSOURCE:
Iron Stand UTSOURCE:
Nose Pliers UTSOURCE:
Flux UTSOURCE:

Story

Read more

Schematics

Step 1

First things first you need to know how to code. So, I first made the code first and made the project in the breadboard there the project worked so, I have gone one step ahead and made schematics in Easyeda.com. then I made the PCB and ordered it from JLCPCB.com just only for 2$.

Step 2

For the components section, I have gone with UTSOURCE. They are one of the largest component suppliers in China. They offer different types of components such as Resistors, Capacitors, ICs and many other things. You will get exclusive discounts If you order from them. So, why you are waiting for? Place your first order from UTSOURCE.

Step 3

Then I gathered all the components and placed all the components into the PCB Board. And soldered all the components.

Step 4

Uploaded the code through Arduino IDE. Then I have connected the 12v power supply and started the music to see it is working perfectly. You will need to adjust the potentiometer of the Sound Sensor Module for great adjustments.

Code

Music reactive LED strip Code

Arduino
/*
Code Name: Music Reactive Led Strip
Code URI: https://circuitbest.com/category/arduino-projects/
Author: Creative Creator
Author URI: https://www.youtube.com/channel/UCJoXoKcfAo4j9XWDlxCWMyg 
Description: Music Reactive LED Strip with Arduino Nano
Version: 1.0
License: Remixing or Changing this Thing is allowed. Commercial use is not allowed.
*/
 
 
int Sound_Sensor = 13;                //initialize Sound Sensor Pin
int LED_Strip = 11;                   //initialize 12V LED Strip Pin
 
void setup() 
{
  pinMode (Sound_Sensor, INPUT);      //define Sound Sensor as input
  pinMode (LED_Strip, OUTPUT);        //define LED Strip as output
}
 
void loop()
{
  int Store_Data = digitalRead (Sound_Sensor);    //define variable of the Sound Sensor status
                                                  //get the value of the Sensor
  
  if (Store_Data == 1)                 //When Sensor gets a signal
  {
    digitalWrite(LED_Strip, HIGH);     //LED_Strip will be on
  }
  
  else                                //If no signal is found
  {
    digitalWrite(LED_Strip, LOW);     //LED_Strip strip will be off
  }
  
}

Credits

Creative creator
22 projects • 8 followers
Contact

Comments

Please log in or sign up to comment.