Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I would like a smooth scrolling sentence on one line. Is this possible?
You can't smooth scroll a text LCD, only character scrolling is possible. (Unless it's a 2*8 and then you can but it's complicated)
Mike.
I think he is defining 'smooth-scrolling' as scrolling a single pixel at a time - this means you'd need to use all eight of the CGRAM custom characters. The video you is just scrolling a character at a time, so it's not difficult.Is that because of the 40 character per line limit? I.E w/o jumping to the other line.
I can't remember, but I thought that if you use the entry-mode-set command and specify that the display should shift after every write, you'd just have to write each character of your long string to the same position for the display to scroll.I've done it by breaking the message into less than 40 character sections, including the beginning position indent, and then calling each section one after the other. There is a slightly longer space between characters while the display is cleared and reset but it is not too objectionable. It may be possible to limit that longer space w/ more code but I'm satisfied at this point.