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

tvout_bb

Then the code

#include 

TVout 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

And finally a picture
IMG_3544

 Posted by at 21 h 43 min

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

Ce site utilise Akismet pour réduire les indésirables. En savoir plus sur comment les données de vos commentaires sont utilisées.