ROTATING LED MESSAGE DISPLAY

AlbertHall

Joined Jun 4, 2014
12,347
1. consider the message as written in a circle with the end joined to the beginning
2. Display the message
3. wait a short time
4. redisplay the message moved 1 character or pixel (depending on whether it is a character or graphic display)
repeat 3 and 4
 

Art

Joined Sep 10, 2007
806
Imagine one of the LED scroll signs in trains and terminals.
If you cover up ever vertical line of the display except one, it’s now one of those things.
 

dl324

Joined Mar 30, 2015
16,943
There are many ways to do it. It depends on the programmer.

I've been experimenting with a $9 computer called C.H.I.P. One of my first experiments was to display Hello World on a 5x7 LED matrix. When I finished that, I regretted not wiring a larger display so I could implement a scrolling message. In spite of only having a matrix large enough to display a single character, I decided to implement a scrolling display.

The way I did it was to construct an array with the message and then treat the LED matrix as a "window" that I "slid" over the message array.
 
Top