Quote Originally Posted by sirvo View Post
Hello everyone!

I was thinking about running a splash screen when I start LCD. It could be some flags or names or drawings, blinking things and etc.. Do you have anything available? Ideas?
This splash screen could take 2 or 3 seconds at most...

If you have something, please, can you show it?

Thanks in advance...

Regards.
Hi Silvio, not sure if mackracket covered your question or if question was how to implement, so if how to implement, it's easy, just lcdout after your defines pause 3 seconds and then follow with your main loop, like so:
Code:
DEFINE xxxxxxxxxxx
DEFINE yyyyyyyyyyyy
DEFINE >>>>>>>>>

LCDOUT "sylvio's flash message"
PAUSE 3000
lcdout $FE,1
LCDOUT $FE,2


loop: Do something
        Do somethingMore 
        goto loop
end