Fév 042013
Last time we have seen how to use an arduino and a 16*2 lcd screen.
Now lets see to use an arduino and a tvout to a small display screen (2.5 inches) using a RCA connector.
First the wiring
Then the code
#includeTVout TV; unsigned char x, y; void setup ( ) { TV.start_render( _PAL ); } void loop ( ) { TV.clear_screen ( ); TV.print_str ( 10, 10, "Hello World!!!" ); TV.delay ( 60 ); }
TvOut lib can be found here