hi all..... just wanted to know whether tv out supports any timer ? when i use my arduino with video experimenter shield for display text on tv , the text will be displayed all the time...i want to display the text for certain time it self , like around 10minutes....does tv out library supports this kind of application?
i want to display the text for certain time it self , like around 10minutes....does tv out library supports this kind of application?
That's a matter of making your program display one value for a period of time, and then another value (perhaps blank). No (additional) timers are needed. Use millis() to determine when the message is first shown. Then, on each pass though loop(), see if it is time (now minus then is greater than some value) to show something else.
Thanks a lot for your help..... :)... will definitely try it