|
Soldering iron |
|
|
Soldering Iron Wire Welding Lead Roll |
rgb LED Controller
Hi guys in this project I shall show you that how you can make a RGB Light cntoller. Here is the PCB layout
PCB Layout :
Arduino Code :
//Bluetooth Controlled Arduino RGB Led Strip//
#include <SoftwareSerial.h>
SoftwareSerial BLU(0,1);
#define redPin A1
#define greenPin A2
#define bluePin A0
void setup()
{
//Serial setup
Serial.begin(9600);
Serial.println("-= HC-05 Bluetooth RGB LED =-");
BLU.begin(9600);
BLU.println("-= HC-05 Bluetooth RGB LED =-");
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
setColor(255, 0, 0);
delay(500);
setColor(0, 255, 0);
delay(500);
setColor(0, 0, 255);
delay(500);
setColor(255, 255, 255);
}
void loop()
{
while (BLU.available() > 0)
{
int redInt = BLU.parseInt();
int greenInt = BLU.parseInt();
int blueInt = BLU.parseInt();
redInt = constrain(redInt, 0, 255);
greenInt = constrain(greenInt, 0, 255);
blueInt = constrain(blueInt, 0, 255);
if (BLU.available() > 0)
{
setColor(redInt, greenInt, blueInt);
Serial.print("Red: ");
Serial.print(redInt);
Serial.print(" Green: ");
Serial.print(greenInt);
Serial.print(" Blue: ");
Serial.print(blueInt);
Serial.println();
BLU.flush();
}
}
}
void setColor(int red, int green, int blue)
{
analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
}
RGB Controller
Needed Components :
Atmega8 Microcontroller – 1
HC-05 Bluetooth Module – 1
LM 7805 IC -1
22pf Capacitor – 2
100uf Capacitor -1
16mhz Oscillator – 1
4k7 resistor – 1
1k Resistor – 4
2k resistor – 1
10k Resistor -1
IRFZ44 Mosfet – 3
RGB LED Strip – 1mtr
rgb LED Controller
*PCBWay community is a sharing platform. We are not responsible for any design issues and parameter issues (board thickness, surface finish, etc.) you choose.
- Comments(0)
- Likes(3)
- Engineer Apr 17,2022
- Dr. TRonik Dec 20,2021
- Engineer Dec 19,2021
- 1 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
-
1design
-
2usability
-
3creativity
-
4content
More by Sayanik Mandal
- Time Delay Relay circuit using 555 timer IC In this 555 timer project, I have shown how to make a time delay relay circuit using 555 timer IC to...
- Speed control of DC motor using PWM with 555 IC In this 555 timer project, I have shown how to make speed control of DC motor using PWM with a 555 t...
- Speed control of DC motor using PWM with 555 IC In this 555 timer project, I have shown how to make speed control of DC motor using PWM with a 555 t...
- Atmega328P without Arduino PCB Design Atmega328P microcontroller:The ATmega328P is a high-performance picoPower 8-bit AVR RISC-based micro...
- Time Delay Relay circuit using 555 timer IC In this electronics project, I have explained how to make a simple Water Level Indicator using the B...
- Time Delay Relay circuit using 555 timer IC In this 555 timer project, I have shown how to make a time delay relay circuit using 555 timer IC to...
- LED chaser lights with 555 timer n this electronics project, I have explained how to make simple LED chaser lights with CD4017 & ...
- 300 watt amplifier Introduction to the AmplifierAn amplifier is an electronic device or circuit which is used to increa...
- amplification process All Category amplifiers50W Power Amplifier With LM3886This is my second encounter with LM3886. I was...
- All Category amplifiers All Category amplifiers50W Power Amplifier With LM3886This is my second encounter with LM3886. I was...
- Rotary switches controller Rotary switches move in a circle and can stop in several positions. They are used to control many di...
- All Category amplifiers 50W Power Amplifier With LM3886This is my second encounter with LM3886. I was pleased with the sound...
- 300W RMS Power Amplifier - 2SC3858 and 2SA1494 Transistors This amplifier has an excellent audio quality, and use four output power transistors, it reaches a s...
- 70W Stereo HI-FI Power Amplifier - High Fidelity using two TDA2050 IC's + PCB The TDA2050 Integrated CircuitsThe TDA2050 is a monolithic integrated circuit in a Pentawatt? packag...
- Adjustable Switching Power Supply 5.1 to 40V, 2.5 Amp using L4960 In this article, we present an adjustable power supply with a stabilized output that varies from 5.1...
- Christmas tree with arduino uno Christmas tree with Arduino UNOStep 1: Circuit DiagramThe project is super easy for everyone to make...
- Christmas tree with arduino uno Step 1: Circuit DiagramThe project is super easy for everyone to make, and no specific knowledge is ...
- rgb LED Controller Hi guys in this project I shall show you that how you can make a RGB Light cntoller. Here is the PCB...
-
-
-
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
153 1 1 -
-