Perozdero123
Published

Arduino TV Out - Importing Picture

How to display an image on an analog TV.

AdvancedFull instructions provided7,920
Arduino TV Out - Importing Picture

Things used in this project

Hardware components

Jumper wires (generic)
Jumper wires (generic)
×1
Arduino UNO
Arduino UNO
×1

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

Arduino TVout shematic

Code

CAR.ino

Arduino
#include <TVout.h>
#include "car.h"


TVout TV;

void setup() {
  // put your setup code here, to run once:
TV.begin(_PAL, 128, 96);

}

void loop() {
  // put your main code here, to run repeatedly:
TV.clear_screen();
TV.bitmap(10, 10, car);
delay(60);
}

Credits

Perozdero123
0 projects • 3 followers
Contact

Comments

Please log in or sign up to comment.