Sie sind auf Seite 1von 23

Looking for Latest Electronics Project Kits?

CLICK HERE
(http://www.store.circuitstoday.com/)


(http://www.circuitstoday.com)

SPONSORED

Display LED Screen

Circuit Board Design

A LED Light

PCB Board

LED Strip

Spinning or Rotating LED Display


using Arduino POV
(http://www.circuitstoday.com/rotat
ing-led-display-arduino)
 jojo  September 20, 2017  2 Comments
Try one month free.
WATCH NOW

Designing a Spinning/Rotating LED Display


In this project, we are going to show you how to make a simple “Rotating LED Display”  (also popularly known
as Spinning LED Display) with Arduino. The motivation to make this project came to my mind when I saw a
product in the market, in which a text message was clearly visible on a “Rotating LED Strip”.
(http://www.circuitstoday.com/wp-content/uploads/2017/08/CircuitsToday.jpg)

After that, I planned to make this project myself and Arduino is a good choice to build this spinning led display.

For this project, I designed PCB using Eagle CAD (http://www.circuitstoday.com/pcb-design-and-layout-


software)software. The reason to choose Eagle was to build a lightweight PCB, as there is high speed rotation
involved in the project, and the PCB will be a part of the rotating module. In this circuit, “Arduino pro mini” is
used because it is very small and powerful board.

Seven LED’s, a pair of IR LED and a Photodiode is also used. IR LED and Photo diode are used to design a
feedback system; which gives the actual position of the rotor to Arduino. LED’s are placed in a single line and
are connected to the Arduino board. A small DC gear motor is used to rotate this circuit; and when the circuit
rotates the LED’s make a blink pattern that shows English alphabets. The code can be modi ed for displaying
other languages.

The working of Rotating LED Display is very interesting and it can be used for decoration purpose, where you
can make beautiful designs and graphics using this amazing project. This display can also be  used in public
places like railway/ bus station and airport as a sign board, as it is very cost effective to build. Proper
maintenance is necessary for the gear motor and rotating assembly.

Circuit Diagram

(http://www.circuitstoday.com/wp-content/uploads/2017/08/rotating_led_display.png)

Spinning LED Display using Arduino

Circuit diagram is shown above. I also designed a PCB on EAGLE and the les are given below. it would be
better to use etched PCB. PCB Etching process is a simple task, you can learn this from our blog
(http://www.circuitstoday.com/pcb-manufacturing-process). For PCB etching refers the gure given below.
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Pcb_layout_rotating_led.png)

PCB Layout

(http://www.circuitstoday.com/wp-content/uploads/2017/08/pcb_layout_etching.png)

PCB Layout for etching

If you do not want to etch the PCB, just use the General Purpose PCB (GPP), which is easily available in the
market.
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Rotating_LED_Display_PCB.jpg)

As you can see, circuit is simple but here I am explaining some key points that should be kept in mind.

Use Rectangular LED’s; because circular LED’s consume more space, and the layout designed by me is based on
rectangular LED’s.

After making the connection, check the IR LED. IR ray is not visible to our eyes, so open the camera of your
smart phone and observe the IR LED through your smart phones screen. If light is visible on IR LED, then the
connection of LED is ne.

Connection of Photodiode is a little confusing, because Photodiode works in reverse bias. For proper
connection just see the gure below.
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Photodiode_connection.jpg)

Photodiode Connection

(http://www.circuitstoday.com/wp-content/uploads/2017/08/PCB_Layout.png)

This circuit can be powered with a 9-volt battery, connect the battery with power connector using battery cap.

After soldering all the components, just switch on the circuit and check the power LED on Arduino. If the LED
is glowing, you can upload the code.
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Spinning_LED_Display.jpg)
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Arduino_POV.jpg)

Search:

Quanti
S. No. Name Value Speci cation
ty

1. Arduino Pro Mini 1

2. Copper Clad PCB 1

3. DC Geared Motor 1 More Then 300 RPM

4. Wheel 1 For Motor

5. Adapter 1 12 V

6. Battery 1 9V

7. Battery Cap 1

8. LED 7 RED, Rectangular


Quanti
S. No. Name Value Speci cation
ty

9. Resistance 8 330 ohm

10. Resistance 1 10K ohm

Showing 1 to 10 of 13 entries  Previous Next 

Motor

I am using a 12 volt DC geared BO motor whose RPM is 300. Here I chose BO motor because it is very easy to
install.  You can use another motor based on availability, but do not use very small motors as it cannot carry
weight of the circuit. RPM of the motor should be more the 300.

(http://www.circuitstoday.com/wp-content/uploads/2017/08/Motor.jpg)
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Wheel.jpg)
(http://www.circuitstoday.com/wp-content/uploads/2017/08/Arduino_POV_Display.jpg)

Installation Video

We have created a video demonstrating how to install the setup – say motor wheel assembly, arduino and the
led pack pcb.
Rotating LED Display using Arduino POV - Installation

Program/Code

Download Program (http://www.circuitstoday.com/wp-


content/uploads/ les/arduino/Rotating_LED_Arduino.rar)

Arduino Pro Mini can be programmed using FTDI chip, so connect the chip with Arduino, just copy and paste
the code and upload.

Before making the motor assembly, check the circuit. For checking, put a white (re ective) paper in front of the
IR LED and Photodiode. LED’s start blinking and blinking will stop if we use black (non re ective ) paper.

Photodiode is an analog sensor. So, it is connected to the analog pin A0 of Arduino. This is de ned by an integer
StartPin. Seven LED’s are connected to 7 pins of Arduino. They are de ned by seven integers PIN1 to PIN7.

In the “void setup()” A0 pin is de ned as INPUT, and PIN pins are de ned as OUTPUT.

In the void loop(), an integer value is de ned which is equal to “analogRead” value of StartPin, if the value val is
greater than 200 then it goes to internal loop.

In the “if” statement, every alphabet of text is written, followed by Sp();

In the next steps,  function of all the alphabets are de ned. For example, void A(), in which the rst line is
signal(0,1,1,1,1,1,1) – which is the rst column of alphabet ‘A’. In the second line, signal(1,0,0,1,0,0,0) – which is
the second column of alphabet ‘A’. And in this way all the columns of every alphabets are de ned using signal
function.
In the end, signal function is de ned by void signal where D1 to D7 are de ned as HIGH or LOW according to
‘1’ or ‘0’. Following that, a delay of 1 milli second is given. If you are using  a motor of higher speed, decrease the
delay.

Demo Video – Working

So here’s a demonstration of how a Rotating LED Display works!

Spinning LED Display using Arduino POV - Demo

Working of Project

This project is making use of POV (persistence of vision). Suppose we want to show alphabet A, then you can
see as in gure given below, at a time LED’s of only one column are blinking.

(http://www.circuitstoday.com/wp-content/uploads/2017/08/POV.jpg)

POV – Persistence of Vision

Initially LED’s of column 1 blinks, and next time column 2 and so on. In the code, delay of some milli seconds
should be applied between the blinking of two columns, and in our case it is one millisecond.
This whole scenario (blinking of all columns one by one) makes a complete alphabet. Speed of motor is high
enough that our eyes cannot feel the blinking of LED’s (due to persistence of vision).

In the circuit, a pair of IR LED and a Photodiode is also used. When this pair move over the white strip (as
shown in gure below), the microcontroller (arduino) identi es this point as the starting position and LED’s
start blinking according the text. In this way LED’s blinks in the same pattern all the time, so we can see the text
displayed on it.

(http://www.circuitstoday.com/wp-content/uploads/2017/08/White_Strip.jpg)

Troubleshooting

If the led’s are not blinking when white paper is placed in front of  the IR LED and Photo diode, change the
value in line 23 of code.

If led’s are blinking when black paper is placed in front of IR LED and PD, change the value in line 23 of code.

Output Photographs

(http://www.circuitstod (http://www.circuitstod (http://www.circuitstod (http://www.circuitstod


ay.com/rotating-led- ay.com/rotating-led- ay.com/rotating-led- ay.com/rotating-led-
display- display- display- display-
arduino/output_arduino arduino/output_rotatin arduino/output_spinnin arduino/circuitstoday-
_pov) g_led_display) g_led) 2)

Output Demonstration Video

Arduino POV - Rotating LED Display - Demonstration

SPONSORED

Display LED Screen

Circuit Board Design

A LED Light

LED Strip

Digital Display Board

Categories: Arduino (http://www.circuitstoday.com/category/arduino)

 Previous post (( Next post 


hh
tt

tt

pp

::

//

//

w
w

w
w

w
w

..

cc

ii
You may also like: rr

cc
8 Best Arduino Starter Kit for Beginners
uu
(http://www.circuitstoday.com/best-arduino-starter-kit-beginner)
ii
Arduino Nano Tutorial – Pinout & Schematics
(http://www.circuitstoday.com/arduino-nano-tutorial-pinout-schematics)
tt

ss
Arduino Mega Tutorial – Pinout & Schematics
(http://www.circuitstoday.com/arduino-mega-pinout-schematics)
tt

oo
Project: Home Automation Using IR Remote Control
(http://www.circuitstoday.com/home-automation-ir-remote-control)
dd

Project: Auto Intensity Control Of Street


aa Light Using Arduino
(http://www.circuitstoday.com/auto-intensity-control-street-light-arduino)
yy

..

cc

oo
We recommend: m
m

//
6W ampli er using TA7222AP (http://www.circuitstoday.com/6w-
ampli er-using-ta7222ap) rm

External Interrupts handling in 8051 ea


(http://www.circuitstoday.com/external-interrupts-handling-in-8051)
at

lr
Nanoelectronics (http://www.circuitstoday.com/nanoelectronics)
-i
i
What is C++ ? An Introduction to programming
tx
with C++
(http://www.circuitstoday.com/what-is-cpp-an-introduction-to-
i-
programming-with-cpp)
m
k
Delayed ON LED (http://www.circuitstoday.com/delayed-on-led)
ee

-y

cp
COMMENTS
la

od
RICKY THE ELECTROGEEK
September 16, 2017 c-

ki

-n
Very Interesting Project…THANKS SOOO MUCH!!!
8t

 0e

5r
Colin Mitchell (http://www.talkingelectronics.com)
1f
August 28, 2017
)a

c
You have either got not registration or very poor registration.
i
You need to stabilise the display.
n
Colin Mitchell
g
TALKING ELECTRONICS.
-

 p

LEAVE A REPLY t

u
Your email address will not be published. Required elds are marked *

s
Comment
)
Name *

Email *

Website

POST COMMENT

Development Tools
Automação Profissional com Arduino (Completo)

Development Tools
ESP8266 wifi wireless com Arduino - Automação Residencial

Hardware
Aprenda Arduino: do básico ao avançado

SORT BY TYPE

101-Announcements (http://www.circuitstoday.com/category/announcements) (28)


555 Timer IC (http://www.circuitstoday.com/category/555-timer-ic) (16)

8051 (http://www.circuitstoday.com/category/8051) (26)

8051 projects (http://www.circuitstoday.com/category/8051-projects) (21)

Ampli er Circuits (http://www.circuitstoday.com/category/ampli er-circuits) (39)

Arduino (http://www.circuitstoday.com/category/arduino) (70)

ARM (http://www.circuitstoday.com/category/arm) (3)

Audio Circuits (http://www.circuitstoday.com/category/audio-circuits) (104)

Automotive Circuits (http://www.circuitstoday.com/category/automotive-circuits) (28)

AVR (http://www.circuitstoday.com/category/avr) (23)

Basic Electricity (http://www.circuitstoday.com/category/basic-electricity) (1)

Basic Electronics (http://www.circuitstoday.com/category/basic-electronics) (17)

Battery Circuits (http://www.circuitstoday.com/category/battery-related) (23)

C plus plus (http://www.circuitstoday.com/category/cpluplus) (7)

C Programming (http://www.circuitstoday.com/category/c-programming) (14)

Cable TV Circuits (http://www.circuitstoday.com/category/cable-tv) (1)

Camera Technology (http://www.circuitstoday.com/category/camera) (5)

Clipping and Clamping Circuits (http://www.circuitstoday.com/category/clipping-and-clamping-circuits) (7)

Clocking & Timer Circuits (http://www.circuitstoday.com/category/clocking-timer-circuits) (2)

Conversion Circuits (http://www.circuitstoday.com/category/conversion-circuits) (10)

Counter Circuits (http://www.circuitstoday.com/category/counter-circuits) (2)

Counters (http://www.circuitstoday.com/category/counters) (2)

Digital Electronics (http://www.circuitstoday.com/category/digital-electronics) (11)

Drones (http://www.circuitstoday.com/category/drones) (1)

Education & Training (http://www.circuitstoday.com/category/education-training) (7)

Electronic Components (http://www.circuitstoday.com/category/components) (31)

Electronic Keys & Locks (http://www.circuitstoday.com/category/electronic-keys-locks) (3)

Electronics Books (http://www.circuitstoday.com/category/electronics-books) (10)

Electronics Jobs (http://www.circuitstoday.com/category/electronics-jobs) (5)

Embedded Systems (http://www.circuitstoday.com/category/embedded-systems) (7)

Equipment Reviews (http://www.circuitstoday.com/category/equipment-reviews) (1)

Events (http://www.circuitstoday.com/category/events) (3)

Fan Circuits (http://www.circuitstoday.com/category/fan-circuits) (1)


Filter Circuits (http://www.circuitstoday.com/category/ lter-circuits) (16)

Fire Alarm (http://www.circuitstoday.com/category/ re-alarm) (3)

Fun & Game Circuits (http://www.circuitstoday.com/category/fun-game) (14)

Gadget Reviews (http://www.circuitstoday.com/category/gadget-reviews) (6)

Guides (http://www.circuitstoday.com/category/guides) (15)

Ham Radio Circuits (http://www.circuitstoday.com/category/ham-radio-circuits) (2)

High Voltage Circuits (http://www.circuitstoday.com/category/high-voltage-circuits) (1)

History (http://www.circuitstoday.com/category/history) (26)

Home Circuits (http://www.circuitstoday.com/category/home-circuits) (35)

Industrial Circuits (http://www.circuitstoday.com/category/industrial-circuits) (15)

Industry News (http://www.circuitstoday.com/category/industry-news) (1)

Infographics (http://www.circuitstoday.com/category/infographics) (1)

Instruments (http://www.circuitstoday.com/category/instruments) (13)

Integrated Circuits (http://www.circuitstoday.com/category/integrated-circuits) (20)

Inverters (http://www.circuitstoday.com/category/inverter) (5)

Lab Manuals (http://www.circuitstoday.com/category/lab-manual) (20)

LED related (http://www.circuitstoday.com/category/led-related) (3)

Light Related (http://www.circuitstoday.com/category/light-related) (14)

Lighting Circuits (http://www.circuitstoday.com/category/lighting-circuits) (44)

MATLAB (http://www.circuitstoday.com/category/matlab) (3)

Microcontrollers (http://www.circuitstoday.com/category/microcontrollers) (12)

Mobile Phone Related (http://www.circuitstoday.com/category/mobile-phone-related) (3)

Motor Related (http://www.circuitstoday.com/category/motor-related) (14)

Nanotechnology (http://www.circuitstoday.com/category/nanotechnology) (14)

Oscillators (http://www.circuitstoday.com/category/oscillators) (25)

PCB (http://www.circuitstoday.com/category/pcb) (2)

Peripheral Interface Controller (PIC) (http://www.circuitstoday.com/category/peripheral-interface-controller-pic) (29)

Power Controller Circuits (http://www.circuitstoday.com/category/power-controller-circuits) (8)

Power Electronics (http://www.circuitstoday.com/category/power-electronics) (3)

Power Supplies (http://www.circuitstoday.com/category/power-supplies) (72)

Product Reviews (http://www.circuitstoday.com/category/product-reviews) (12)

Project Ideas (http://www.circuitstoday.com/category/project-ideas) (1)


Projects (http://www.circuitstoday.com/category/projects) (7)

Proteus (http://www.circuitstoday.com/category/proteus) (16)

Proximity Detectors (http://www.circuitstoday.com/category/proximity-detectors) (3)

Radio Circuits (http://www.circuitstoday.com/category/radio-circuits) (30)

Radio Transmitters (http://www.circuitstoday.com/category/radio-transmitters) (19)

Raspberry Pi (http://www.circuitstoday.com/category/raspberry-pi) (3)

Relays (http://www.circuitstoday.com/category/relays) (3)

Remote Circuits (http://www.circuitstoday.com/category/remote-circuits) (12)

Reviews (http://www.circuitstoday.com/category/reviews) (8)

Robotics (http://www.circuitstoday.com/category/robotics) (7)

RTOS (http://www.circuitstoday.com/category/rtos) (2)

Security & Saftey (http://www.circuitstoday.com/category/security-saftey) (17)

Sensor Circuits (http://www.circuitstoday.com/category/sensor-circuits) (16)

Signal Conditioners (http://www.circuitstoday.com/category/signal-conditioners) (11)

Signal Generators (http://www.circuitstoday.com/category/signal-generators) (13)

Speed Controller Circuits (http://www.circuitstoday.com/category/speed-controller-circuits) (1)

State space analysis (http://www.circuitstoday.com/category/state-space-analysis) (2)

Switching Circuits (http://www.circuitstoday.com/category/switching-circuits) (6)

Tech News (http://www.circuitstoday.com/category/tech-news) (86)

Telephone Related (http://www.circuitstoday.com/category/telephone-related) (9)

Television Related (http://www.circuitstoday.com/category/television-related) (4)

Temperature Related (http://www.circuitstoday.com/category/temperature-related) (3)

Test & Measurement Circuits (http://www.circuitstoday.com/category/test-measurement-gadgets) (38)

Testing Components (http://www.circuitstoday.com/category/testing-components) (9)

Three phase circuits (http://www.circuitstoday.com/category/three-phase-circuits) (1)

Timer Circuits (http://www.circuitstoday.com/category/timer-circuits) (3)

Tone generator circuits (http://www.circuitstoday.com/category/tone-generator-circuits) (20)

Tools and Softwares (http://www.circuitstoday.com/category/tools-and-softwares) (6)

Transmitters (http://www.circuitstoday.com/category/transmitters) (7)

Tutorials (http://www.circuitstoday.com/category/tutorials) (163)

UPS (http://www.circuitstoday.com/category/ups) (2)

USB Circuits (http://www.circuitstoday.com/category/usb-circuits) (3)


Videos (http://www.circuitstoday.com/category/videos) (5)

VLSI (http://www.circuitstoday.com/category/vlsi) (36)

Voltage Regulators (http://www.circuitstoday.com/category/voltage-regulators) (15)

Instant Quote

Dimensions
Length x Width mm

Quantity
Choose Num (pcs)

Layers

2 Layers

Thickness

1.6mm

Get a $5.00 coupons Bonus

Quote Now

(https://www.wellpcb.com/)

Das könnte Ihnen auch gefallen