0% found this document useful (0 votes)
135 views

Arduino WS2812B LED Strip connection and Code

Uploaded by

Andy Zhu
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
135 views

Arduino WS2812B LED Strip connection and Code

Uploaded by

Andy Zhu
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 31

Arduino WS2812B LED Strip connection and Code

MENU 

ADVANCE ELECTRONICS

Arduino WS2812B LED Strip connection and Code

Engr Fahad — June 26, 2021 add comment

(Last Updated On: September 9, 2021)

Table of Contents 
 1. Arduino WS2812B LED Strip:
 2. Features & Specifications of DC5V WS2812B 5 Meter 60 Addressable LED Strip:
 3. Amazon Links:
 4. WS2812B LED Strip Connection with Arduino:
 5. Arduino WS2812B LED Strip Code:
 6. Arduino WS2812B LED Strip Calibration Complete code:
 7. Arduino WS2812B LED Strip Code for only red light:
 8. Arduino WS2812B LED Strip Code for flashing light:
 9. Arduino WS2812B LED Strip Complete code:
 10. Applications of ws2812b Strip LEDs:

Arduino WS2812B LED Strip:

Arduino WS2812B LED Strip connection and Code- in this tutorial, we are going to be looking
at the WS2812B Addressable LED Strip, we will go through all the specs, and I will also explain
how to use it with the Arduino. DC 5V WS2812B 5 Meter, 60 Addressable LED Strip is the
coolest type of LED strips. With the WS2812B Addressable LED Strip, you can control the
brightness and the color of each LED individually, which allows you to produce amazing and
complex effects in a simple way. This Addressable LED Strip is made by WS2812B LEDs wired
in series. These Addressable LED Strips have an IC built right into the LED. This allows

communication via a one-wire interface. This means that you can control lots of LEDs using just

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

one digital pin of your Arduino. This kind of strips are very flexible and can be cut to any length
you want. As you can see, the strip is divided into segments, and each segment contains one RGB
LED.

Arduino WS2812B LED Strip

Features & Specifications of DC5V WS2812B 5 Meter 60


Addressable LED Strip:

 Input voltage: DC 5V

 LED resource: WS2812B LED (SMD 5050 RGB LED with the built-in improved version
of WS2811 IC)

 Power: 60LEDS/M—-18watt/M

 FPCB Width: 60LEDS/M—-10mm

 Ingress Protection: IP30 Non-waterproof

 IP65: Waterproof in Silicon Coating

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

 Colours: Full-color RGB, dream colour changing

 Length: The length of the Addressable LED Strip can be customized.

 Type of IC: Built-in WS2812 / WS2812B

 LED Type: SMD 5050

 PCB Color: White

 DC5V, 0.3watt/LED(Max)

 60PCS of 5050 inbuilt IC, each LED separately control

 IP65 waterproof 60LED 5Meter

How do we go about controlling individually addressable LEDs using an Arduino uno


or Arduino Nano. LEDs can add some pizzazz to your projects, to your home, and if you
are not a complete loser to your gaming computer.

Amazon Links:

WS2812B Addressable LED Strip

12v Adaptor:

Arduino Uno

Arduino Nano

330-ohm resistor:

100 micro farad capacitor

Other Tools and Components:

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Top Arduino Sensors:

Super Starter kit for Beginners

Digital Oscilloscopes

Variable Supply

Digital Multimeter

Soldering iron kits

PCB small portable drill machines

*Please Note: These are affiliate links. I may make a commission if you buy the components
through these links. I would appreciate your support in this way!

WS2812B LED Strip Connection with Arduino:

Now to build the circuit we plug in the power rails on the breadboard from the Arduino ground and
5 volt and then we plug the capacitor with a positive end on the 5 volt supply through the power
rails and the negative end with the ground. We take digital pin number 2 of the Arduino and set it
up through a 330 ohm resistor and then we take the jumper wires from the resistor and connect it to
the middle of the led strip which is Din. Now connect the 5V from the bread board to the 5V of the
led strip and connect the ground wire from the bread board to the ground of the led strip. You can
follow the same exact connections if you plan to use Arduino Uno.

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

So now that we have the circuit completed let’s jump into the code.

Arduino WS2812B LED Strip Code:

First thing you want to do is to download the FastLED library, open your library manager in the
Arduino IDE.

Now type in FastLED and then click install

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Once we get the library installed you want to include the FastLED header

Then we want to define the LED data pin which for me it was pin 2 but you can use any pin you
would like as long as you set up the circuit that way then we want to define the number of LEDs

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

we use my LED strip came with 60 but in this tutorial we are only going to be using 12 of them.

1 #include <FastLED.h>
2 #define LED_PIN 2
3 #define NUM_LEDS 12

Now let’s create an array of type CRGB and the length of that array will be the number of LEDs
you have

1 CRGB leds[NUM_LEDS];

Now let’s go to the setup function and set up the LEDs we want to use the FastLED add LEDs
method and inside angular brackets we use the type of LEDs. In our case we have ws2812 these
are control on the LED pin using the RGB calibration then in parentheses we say that those LEDs
will use the array we declared earlier and that there are 12 LEDs present which is NUM LEDs.

1 FastLED.addLeds<WS2812, LED_PIN, RGB>(leds, NUM_LEDS);

Next we want to set up a power fail safe by limiting the max power in volts and milliamps to 5 volt
and 500 milliamps this just makes sure that the Arduino is not drawing too much current.

1 FastLED.setMaxPowerInVoltsAndMilliamps(5, 500);

Then we want to clear the LEDs every time we upload a new code by using FastLED.clear() and
FastLED.show().

1 FastLED.clear();
2
3 FastLED.show();

So let’s calibrate the LEDs normally the order when you write the LEDs is first is red, second is
green, and third is blue. So, to actually write a single LED we say the LED array at the zeroth
element is CRGB the color of to 255 which should correspond to red. We are going to say the
second LED will correspond to green only and the third LED will correspond to blue only.

Now we say that FastLED.show() actually show the results on the LEDs and we see that our order

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

is a little bit off instead of having red first we have green first and to fix this we come up into the
setup function and say that instead of RGB the order is green red and blue.

1 FastLED.addLeds<WS2812, LED_PIN, RGB>(leds, NUM_LEDS);


2
3 FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);

Now you justhave two changes to whatever result you get from running the code below since my
order is green red blue I change the calibration and whenever I run this code the proper values are
spitting out to the LEDs.

Arduino WS2812B LED Strip Calibration Complete code:

1 #include <FastLED.h>
2 #define LED_PIN 2
3 #define NUM_LEDS 12
4
5 CRGB leds[NUM_LEDS];
6
7 void setup() {
8   FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
9   FastLED.setMaxPowerInVoltsAndMilliamps(5, 500);
10   FastLED.clear();
11   FastLED.show();
12
13 }
14
15 void loop() {
16   // RED Green Blue
17 for (int i=0; i<NUM_LEDS; i++ )
18 {
19     leds[i] = CRGB(0, 255-2*i, 20*i );
20     FastLED.setBrightness(6*i);
21     FastLED.show();
22     delay (50);
23 }
24 for (int i=NUM_LEDS; i> 0; i-- )

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

25 {
26     leds[i] = CRGB(20*i, 0, 255-20*i );
27     FastLED.setBrightness(60-2*i);
28     FastLED.show();
29         delay (50);
30
31 }
32 }

So now that we have the LEDs calibrated let’s turn all the lights on the strip red so that is going to
be using a for loop we are iterating through the entire array of LEDs starting at zero up until the
length of the array and we are going to say that for every LED we will change the RGB color to
red.

1 for (int i=0; i<NUM_LEDS; i++ )


2
3 leds[i] = CRGB(255, 0, 0 );

We say fast LEDs show to actually show the values.

Arduino WS2812B LED Strip Code for only red light:

1 #include <FastLED.h>
2 #define LED_PIN 2
3 #define NUM_LEDS 12
4 CRGB leds[NUM_LEDS];
5 void setup() {
6 FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
7 FastLED.setMaxPowerInVoltsAndMilliamps(5, 500);
8 FastLED.clear();
9 FastLED.show();
10
11 }
12
13 void loop() {
14   // RED Green Blue
15 for (int i=0; i<NUM_LEDS; i++ )
16 leds[i] = CRGB(255, 0, 0 );
17 FastLED.show();
18   }

When we upload the code to the Arduino we could see that all the lights turned red

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

We can change this value around so if we want all the values to be green we change the second
value to 255 and the value should turn to green

1 leds[i] = CRGB(0, 255, 0 )

if we want to do a mix of colors to produce let’s say purple we can change the red value to 255 and
the blue value to 255.

1 leds[i] = CRGB(255, 0, 255 )

When we upload that code we get somewhat of a purple.

You can see we’re generally getting purple so let’s say we want to keep this purple colour and
make the lights flash.

So to add a flash we use the method FastLED.setBrightness() this is actually setting the level the

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

brightness of the lights and we want this to increment starting from zero and it increments based on
whatever iteration we are in the for loop.

1 FastLED.setBrightness(2*i);

So it’s getting brighter for every iteration we go through and to reverse the flashing effect we copy
and paste the for loop down and reverse it so we start at the number of LEDs which is 12 when we
decrease the value so the brightness starts high and it goes low as the loop progresses we add a
delay just so you can see the effect take place.

1 for (int i=0; i<NUM_LEDS; i++ )


2
3 {
4
5 leds[i] = CRGB(255, 0, 255 );
6
7 FastLED.setBrightness(2*i);
8
9 FastLED.show();
10
11 delay (20);
12
13 }
14
15 for (int i=NUM_LEDS; i> 0; i-- )
16
17 {
18
19 leds[i] = CRGB(255, 0, 255 );
20
21 FastLED.setBrightness(2*i);
22
23 FastLED.show();
24
25 delay (20);
26
27
28
29
30 }

Arduino WS2812B LED Strip Code for flashing light:

1 #include <FastLED.h>

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

2 #define LED_PIN 2
3 #define NUM_LEDS 12
4
5 CRGB leds[NUM_LEDS];
6
7
8 void setup() {
9 FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
10 FastLED.setMaxPowerInVoltsAndMilliamps(5, 500);
11 FastLED.clear();
12 FastLED.show();
13
14 }
15
16 void loop() {
17   // RED Green Blue
18 for (int i=0; i<NUM_LEDS; i++ )
19 {
20 leds[i] = CRGB(255, 0, 255 );
21 FastLED.setBrightness(2*i);
22 FastLED.show();
23 delay (20);
24 }
25 for (int i=NUM_LEDS; i> 0; i-- )
26 {
27 leds[i] = CRGB(255, 0, 255 );
28 FastLED.setBrightness(2*i);
29 FastLED.show();
30 delay (20);
31
32 }
33 }

When we upload the code we get this flashing effect but it’s pretty fast so let’s increase the delay
and upload the code we could see that the flash slows down a little bit.

You just had to tweak it to whatever speed you want. So our final task in this tutorial is going to be
to turn the lights from green to blue as we progress from left to right and we do that by decreasing
the green RGB value by 20 every iteration because after 12 iterations the green value will be close
to zero and then we say for the blue value we increase from zero by 20 every iteration because that
will end at 240 which is close to blue.

1 for (int i=0; i<NUM_LEDS; i++ )

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

2 {
3 leds[i] = CRGB(0, 255-2*i, 20*i );
4 FastLED.setBrightness(6*i);
5 FastLED.show();
6 delay (50);
7 }

Now for the reverse for loop let’s start at red and transition to magenta. The red value at 255 and
gradually decrease it so the red value here will start really high and then gradually get lower
because it’s a reverse for loop that starts at 12 and goes all the way down to 1 then we want to
increase the blue value as we progress and it looks strange that we are subtracting a value to
increase it but that’s just because we start at a high number and we are subtracting it by less and
less as we go on.

1 for (int i=NUM_LEDS; i> 0; i-- )


2
3 {
4
5 leds[i] = CRGB(20*i, 0, 255-20*i );
6
7 FastLED.setBrightness(60-2*i);
8
9 FastLED.show();
10
11         delay (50);
12
13 }

Arduino WS2812B LED Strip Complete code:

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

#include <FastLED.h>
#define LED_PIN 2
#define NUM_LEDS 12

CRGB leds[NUM_LEDS];

void setup() {
FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
FastLED.setMaxPowerInVoltsAndMilliamps(5, 500);
FastLED.clear();
FastLED.show();

void loop() {
// RED Green Blue
for (int i=0; i<NUM_LEDS; i++ )
{
leds[i] = CRGB(0, 255-2*i, 20*i );
FastLED.setBrightness(6*i);
FastLED.show();
delay (50);
}
for (int i=NUM_LEDS; i> 0; i-- )
{
leds[i] = CRGB(20*i, 0, 255-20*i );
FastLED.setBrightness(60-2*i);
FastLED.show();
delay (50);

}
}

When we upload the code you can see that we have changing colors with respect to time from left
to right. We transition from green to blue and from right to left we transition from red to magenta.
This tutorial is just the starting point for individually addressable LEDs you can do a lot more
with these you can tweak the delay values the brightness and the colors all to make your own
custom patterns.

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Applications of ws2812b Strip LEDs:

 Architectural decorative lighting

 Canopy and bridge edge lighting

 Amusement park, theatre and aircraft cabin mood lighting

 Cove lighting, ambient lighting, under shelf lighting

 Auditorium walkway lighting

 Indoor / outdoor illumination

 Making led screen

 led wall

 Advertising board

 The city lighting project, entertainment and leisure places lighting.

Share this:

                      

Like this:

Loading...

Recommended For You

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Toll Tax System using Arduino bionic arm 500W Ebike Brushless Arduino FM Radio
Arduino: Ultrasonic using flex sensor and Motor Controller wiring using TEA5767 and
Sensor with Servo micro servos explanation, RDA5807M FM Stereo
Motor Hoverboard Test Radio Modules

About the Author: Engr Fahad

My name is Shahzada Fahad and I am an Electrical Engineer. I have been doing Job in UAE as a
site engineer in an Electrical Construction Company. Currently, I am running my own YouTube
channel "Electronic Clinic", and managing this Website. My Hobbies are * Watching Movies * Music *
Martial Arts * Photography * Travelling * Make Sketches and so on...

Leave a Reply

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Search … Search

RECENT POSTS

Trike Electric Scooter using


Hoverboard Motors with
complete wiring explanation
November 26, 2021

Toll Tax System using Arduino:


Ultrasonic Sensor with Servo
Motor
November 25, 2021

Arduino bionic arm using flex


sensor and micro servos
November 24, 2021

500W Ebike Brushless Motor


Controller wiring explanation,
Hoverboard Test
November 20, 2021

Naze32 Rev6 Quadcopter,


Betaflight Setup and Firmware
Update
November 16, 2021

Salvage parts from Hoverboard,


Hoverboard Motors Testing,
Salvage Hoverboard
November 16, 2021

Arduino FM Radio using


TEA5767 and RDA5807M FM
Stereo Radio Modules
November 12, 2021

Water Level Monitoring using


ESP8266 and Arduino IoT Cloud
November 9, 2021

How to repair LED Bulb in 2


minutes, LED Bulb Repair, LED
Bulb Repairing

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

November 8, 2021

Home Automation System using


Matlab GUI and Arduino
November 7, 2021

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

ChinaPCBOne

RECENT COMMENTS

ANGELICA LUCERNAS on Smart


Dustbin using Arduino, Ultrasonic Sensor,
and Servo Motor

Enrique on Raspberry Pi Oled Display I2C


SSD1306 Display Module Interfacing and
programming

mohammad on Soil NPK Sensor with


Arduino and Android Cell Phone

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Application for monitoring Soil Nutrient

Bob on Wireless vibration sensor, iot


vibration sensor, Industrial vibration
sensor “nodemcu esp8266”

Engr Fahad on IoT Water Level Sensor


Using ESP8266 Nodemcu, TOF10120,
and Blynk

ARCHIVES

November 2021 (11)

October 2021 (11)

September 2021 (11)

August 2021 (16)

July 2021 (14)

June 2021 (14)

May 2021 (23)

April 2021 (39)

March 2021 (58)

February 2021 (26)

January 2021 (35)

December 2020 (28)

November 2020 (123)

October 2020 (30)

September 2020 (23)

August 2020 (26)

July 2020 (17)

June 2020 (20)

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

May 2020 (25)

April 2020 (27)

March 2020 (22)

February 2020 (20)

January 2020 (13)

December 2019 (11)

November 2019 (9)

October 2019 (16)

September 2019 (15)

August 2019 (22)

July 2019 (43)

June 2019 (10)

May 2019 (52)

April 2019 (20)

CATEGORIES

Advance Electronics (26)

Advance Projects (127)

android app development (13)

Arduino + Image Processing (8)

Arduino + vb.net Projects (10)

Arduino Industrial Projects (12)

Arduino Projects (217)

Arduino Robotic Projects (7)

Arduino Wireless Projects (50)

Articles (53)

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

ATtinny85 (1)

Basic Electronics (105)

C sharp (C#) (15)

C++ Programming (62)

computer (6)

dc machines and batteries (7)

Digital Electronics (12)

Electrical (36)

Electronics (31)

Engineering (8)

esp32 iot projects (28)

Html and CSS (8)

Industrial (5)

IOT Projects (95)

Java Programming (17)

JavaScript (16)

Matlab (14)

PHP (6)

PLC and Scada Projects (2)

PLC Projects (9)

Power Electronics (6)

Power Generation (17)

Power Projects (5)

Python Programming (38)

raspberry pi (45)

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

RC Plane (9)

RC Projects (6)

Simple Projects (57)

STM32 (5)

Telecommunication (11)

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

Subscribe for Updates

Enter your email address to subscribe to


this blog and receive notifications of new

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]


Arduino WS2812B LED Strip connection and Code

posts by email.

Email Address
Subscribe
Subscribe

Follow Us
Stay updated via social channels

About Us

“Electronic Clinic” is an Electrical and


Electronics Engineering community built
and run by professional electrical
engineers and computer experts. We share
Electrical, Electronics, Power, Robotics,
Software, Communication, IOT “Internet
Of Things”, GSM, Industrial and
communication projects. Thus helping
students and professionals with their
projects and work. We also offer innovative
ideas and solutions.

© 2019 Electronic Clinic by Shahzada Fawad

Home Privacy Policy Disclaimer DMCA About Us Contact Us Sitemap Advertise With Us

https://www.electroniclinic.com/arduino-ws2812b-led-strip-connection-and-code/[12/1/2021 8:50:56 PM]

You might also like