sarthak sethi
Published

TV Out with Arduino

Ever wanted to connect your arduino to your TV and get some display on TV? Here's how!

AdvancedFull instructions provided4,790
TV Out with Arduino

Things used in this project

Story

Read more

Schematics

TV Out PCB Circuit

Code

TV Out Arduino Code

C/C++
Please download libraries from here: http://code.google.com/p/arduino-tvout/downloads/detail?name=TVout_R5.91.zip&can=2&q=
#include <TVout.h>

TVout TV;
unsigned char x, y;

void setup ( )
{
  TV.start_render( _NTSC );
}

void loop ( )
{
  TV.clear_screen ( );
  TV.print_str ( 10, 10, "TVout FTW!!!" );
  TV.delay ( 60 );
}

Credits

sarthak sethi

sarthak sethi

11 projects • 54 followers

Comments