Tutorial: Video output from your Arduino
This is chapter thirty-five of a series originally titled “Getting Started/Moving Forward with Arduino!” by John Boxall – A seemingly endless series of tutorials about the Arduino universe. The first chapter is here, the complete series is detailed here.
[Updated 10/01/2013]
In this chapter we will examine something different – the ability of our Arduino and compatible boards to create composite video output. In other words, displaying stuff from the Arduino on a TV. A lot of people were unaware of the ability to do this, however the process is very simple and not difficult to implement from a hardware perspective. Within this chapter we will learn to construct the minimum hardware required and demonstrate basic functions to get started.
To whet your appetite, here is a quick video demonstration of what is possible:
You can’t expect too much from a 16 MHz microcontroller without a video card… but the price is right, and with some imagination and the right functions you can do quite well. To make this happen we need to knock out some hardware of our own. Connection is very easy. First we need to locate three pins on our Arduino board. They will be used to output Sync, Video and also GND. For those with Arduino Uno/Freetronics Eleven etc Sync is digital 9, video is digital 7 and GND is … GND. If you have a Mega/Mega2560 Sync is digital 11 and video is A7. There is also the ability to generate audio with the methods in this article, and if you want to do this the Uno (etc.) pin is digital 11 or 10 on the Mega.
The monitor or television used needs to have a composite video-in socket (jack). For those with older televisions that have a VCR connected, you could use the video-in socket on the VCR.
The schematic for video out is very simple, you only need two normal 0.25W resistors and a video lead:
If you’re not up for soldering into an RCA plug, a simple way is to chop up a standard video lead as such:
Then just wire the termination of the two resistors to the centre core (“pin”) and GND to the shield. For the purpose of this article I have made a quick TV-out shield that also includes a thumb joystick (as reviewed here).
A real triumph of engineering… however it solves the problem. The vertical trimmer is connected to A0; the horizontal to A1; the button to digital 8 via a 10k0 pull-up resistor. Next, you will need to download and install the arduino-tvout library. It can be found here. We will use the TVoutBeta1.zip version. Those of you who may have a nootropic design Hackvision – please note your library is different.
Now to see how to integrate TV-out into our sketch. We will run through the basic functions which integrated with your imagination should see some interesting results… So let’s go!
For every project, place these two lines at the top of your sketch:
#include <TVout.h> TVout TV;
The first brings in the library, and the second line creates an instance of TV to use with the library functions. Next, we need to activate TVout and select the appropriate broadcast standard (PAL or NTSC). In void setup() use either
TV.start_render(_NTSC) // for NTSC (or)
TV.start_render(_PAL); // for PAL system
Now for the main functions. The first one of interest will be:
TV.clear_screen();
which … clears the screen. Or if you would like to fill the screen with white, use
TV.fill_screen(1);
Moving on – to write some text. First we need to select a font. There are three basic fonts to choose from:
- font4x6 (each character being 4 pixels by 6 pixels, etc.)
- font6x8
- font8x8
Well there is four, but it wouldn’t display for me. Working on it! To choose a font use:
TV.select_font(font4x6); // using font4x6
Then to write the text, choose the screen location with:
TV.set_cursor(x,y);
then display the text with:
TV.print("Hello, world..."); // etc
You can also use TV.println(); to add a carriage return as expected. Display single characters with a position in the one function using:
TV.print_char(x,y,c); // c is the character to display
So let’s have a look at the various fonts in action with the following sketch (download):
Example 35.1
/*
Example 35.1 - arduino-tvout text demonstration
http://tronixstuff.wordpress.com/tutorials > chapter 35 | CC by-sa-nc
*/
#include
#include
TVout TV;
int d=10; // for delay purposes
char c='X';
void setup()
{
TV.begin(_PAL); // for PAL system
TV.clear_screen();
}
void loop()
{
TV.select_font(font4x6);
for (int a=0; a<6; a++)
{
for (int b=0; b<128; b++)
{
TV.print_char(b,a*6,c);
delay(d);
TV.clear_screen();
}
}
delay(1000);
TV.clear_screen();
TV.select_font(font6x8);
for (int a=0; a<6; a++)
{
for (int b=0; b<128; b++)
{
TV.print_char(b,a*8,c);
delay(d);
TV.clear_screen();
}
}
delay(1000);
TV.clear_screen();
TV.select_font(font8x8);
for (int a=0; a<6; a++)
{
for (int b=0; b<128; b++)
{
TV.print_char(b,a*8,c);
delay(d);
TV.clear_screen();
}
}
delay(1000);
TV.clear_screen();
}
Now to move into the 1970s with some basic graphical functions. We have a screen resolution of 128 by 96 pixels to work with. When planning your display, you need to ensure that the sketch never attempts to display a pixel outside of the 128 x 96 screen area. Doing so generally causes the Arduino to reboot.
TV.set_pixel(x,y,z);
where x and y are the coordinates of the pixel, and z is the colour (1 = white, 0 = black, 2 = inverse of current pixel’s colour). You want more than a pixel? How about a line:
TV.draw_line(x1,y1,x2,y2,colour);
Draws a line from x1, y1 to x2, y2 of colour colour. (1 = white, 0 = black, 2 = inverse of current pixel’s colour).
Rectangles? Easy:
TV.draw_rectangle(x,y,w,h,colour,fill);
Draws a rectangle with the top-left corner at x,y; width w, height h, colour and optional fill colour.
Circles are just as simple:
TV.draw_circle(x,y,r,colour,fill);
Draws a circle with centre at x,y; radius r pixels, edge colour, optional fill colour.
Now to see these functions in action with the following sketch (download):
Example 35.2
/*
Example 35.2 - arduino-tvout font demonstration II
http://tronixstuff.wordpress.com/tutorials > chapter 35 | CC by-sa-nc
*/
#include
TVout TV;
int d=100; // for delay purposes
int x1,x2,y1,y2,r=0;
void setup()
{
TV.begin(_PAL); // for PAL system
TV.clear_screen();
randomSeed(analogRead(0)); // seed the random number generator
}
void pixels()
{
TV.clear_screen();
for (int a=0; a<200; a++)
{
x1=random(128);
y1=random(96);
TV.set_pixel(x1,y1,2);
delay(d);
}
delay(1000);
TV.clear_screen();
}
void lines()
{
TV.clear_screen();
for (int a=0; a<96; a++)
{
TV.draw_line(0,a,127,a,1);
delay(d);
}
delay(500);
for (int a=0; a<96; a++)
{
TV.draw_line(0,a,127,a,0);
delay(d);
}
TV.clear_screen();
delay(500);
}
void circles()
{
TV.clear_screen();
for (int i=0; i<30; i++)
{
TV.draw_circle(64,48,i,1,0);
delay(200);
TV.draw_circle(64,48,i,1,1);
delay(200);
TV.draw_circle(64,48,i,0,0);
delay(200);
}
delay(1000);
TV.clear_screen();
}
void loop()
{
pixels();
lines();
circles();
}
And for the video demonstration:
So there you have it, a start with Arduino and TV-out. Furthermore, a big thanks to http://code.google.com/u/mdmetzle/ for the arduino-tvout library.
Have fun and keep checking into tronixstuff.com. Why not follow things on twitter, Google+, subscribe for email updates or RSS using the links on the right-hand column, or join our Google Group – dedicated to the projects and related items on this website. Sign up – it’s free, helpful to each other – and we can all learn something.







Hi John,
Another great tutorial. I am just constantly amazed at what can be done with an arduino board.
norman
It never ends! Sorry it was a bit short, I ran out of time and wanted to get that article out before the end of the month. In a few weeks I will continue with another TV out article.
cheers
john
Hello John, and again thank you for an inspiring series! On a very non-Arduino-related question, what is the music in the top and bottom clips. Shazam can’t match it, and I feel the urge to make an iTunes purchase!
Visit these links:
http://www.youtube.com/watch?v=oJi5sfz0q0Q and http://www.youtube.com/watch?v=Tr1hTJxY5b4. Under the number of views counter there should be artist details and links to iTunes.
have fun
john
Very cool! I hadn’t seen this library, and assumed that I’d need the Nootropic board to play with this type of thing. Thanks for the info!
No worries. That was my thought at first – then after realising anyone could do it, here we are.
Have fun
john
Great tutorial as usual, John! Any ideas on the feasibility of color video with the Arduino? What would be the limiting factors? It’s just amazing what you can do with an Arduino and some programming.
Colour video? No, that requires too much hardware, memory space and CPU power. However I did find someone who has grey levels going, have a look at http://www.javiervalcarce.eu/wiki/TV_Video_Signal_Generator_with_Arduino.
very cool project using TV-out library..can u update this article with full schematic from the joystick?
The joystick is very simple, it is just two resistors that you read with two analogue inputs – and they are separate from the TV out circuitry. More on the joystick here:
http://tronixstuff.wordpress.com/2010/05/21/part-review-sparkfunlbe-thumb-joystick/
cheers
john
hi, is it possible to run this in parallel with a compiste video feed to create a Onboard Screen Display where in the black areas would display live video feed and displaying changing information add by the arduino?
You would need to have a composite video mixer of some sort.
Hi John, excellent article! I was just wondering if it would be possible to isolate the arduino from the TV, maybe through an opto-isolator? Thanks.
You would need to use an analogue isolation amplifier. This is outside the scope of my articles, however this may be a good start: http://www.analog.com/static/imported-files/tutorials/MT-071.pdf
Hi John, thanks for your reply. It looks like those cost more than an arduino board, so maybe I’ll just risk it. Thanks again – really great set of articles here.
Can I just say what a relief to discover someone that truly knows what they’re talking about over the internet. You certainly understand how to bring an issue to light and make it important. More and more people must read this and understand this side of your story. It’s surprising you aren’t more popular because you certainly have the gift.
Thank you for your kind comments Mr Spammer.
hi 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?
Delay functions and so on would just be part of your sketch, not in the library itself.
Hi John. cool article. do you know if tv library is compatible with 1.0 IDE?
Regards
Jason
Sorry just read the to part of the article and answered my own question
thanks again for your very clear simple examples.
regards Jason
No worries, have fun with the Arduino
Hello,
I was wondering about the cable you are using, RCA Composite Video. I have a cord similar to it but when I cut open the inside, the core/pin is not solid but instead made up of many tiny copper wires. I tried using this anyway but my images display very shaky and not completely clear. Do you think it has to do with my cable or is it more likely to be an error with my circuitry? I have also seen that my Sync pin doesn’t affect the image whatsoever. Perhaps it is shaky because of this?
Thank you.
Yes, it does sound flaky. Double-check your circuit and wiring, and if possible try a different coax lead. Sometimes you can get a lead from a cheap $2 store – then cut the plug from one end and use that.
cheers
Thank you very much. I think the cable I have is not COAX. It is the yellow component of the Audio/Video cable. I will try to get a COAX cable and an RCA converter. Does that sound right? Also my TV is very old from the 90′s. Sorry I am new to this, this is my first Arduino project with Video! I found your tutorial very helpful though and it is my primary resource at this point!
No, the yellow one is fine.
Great Job John. Question – Is it possible to use the cable/antenna coax input instead of Video in (which I don’t have). Thanks
You need a composite video in, if you don’t have one you’ll need an RF modulator device to convert the video signal to a “TV channel”.