Scrolling 14 Segment Display
Gorilla
Posts: 16
I am trying to make a scrolling display using kingbright .56" common anode 14 segment alphanumeric displays.
I have 4 anodes connected to pins 0-3 on the mainio and the 14 cathodes connected to 0-13 on the auxio
I need a little help with the code.
I have 4 anodes connected to pins 0-3 on the mainio and the 14 cathodes connected to 0-13 on the auxio
I need a little help with the code.
Comments
I have written a program to display the message "I Love You" on the displays.
However I have run into a problem and need help.
View this video
http://s1090.photobucket.com/albums/i372/meeagorilla/Basic%20Stamp%20Projects/?action=view¤t=VID00012-20101011-0211.mp4
When the message gets to the word love and the word You it is so fast that it doesn't stay on the display long enough! If I increase the pause time the refresh rate goes down, if I decrease the pause time the refresh rate increases and persistence of vision allows us to see the word love as a complete word but it only lasts on the display for a second. I need help holding the word love on the display long enough to be viewable!
do
For var = 0 to 200
{Add your code for the word "I" here}
next
var = 0
For var = 0 to 200
{Add your code for the word "love" here}
next
var = 0
For var = 0 to 200
{add your code for the word "you" here}
next
loop
The For-next loop should last long enough so you can see the words appear. You will have to work on the timing for the display