Devices & Components
Arduino Uno Rev3
Jumper wires (generic)
Hardware & Tools
Soldering iron (generic)
Project description
Code
CAR.ino
arduino
1#include <TVout.h> 2#include "car.h" 3 4 5TVout TV; 6 7void setup() { 8 // put your setup code here, to run once: 9TV.begin(_PAL, 128, 96); 10 11} 12 13void loop() { 14 // put your main code here, to run repeatedly: 15TV.clear_screen(); 16TV.bitmap(10, 10, car); 17delay(60); 18} 19
CAR.ino
arduino
1#include <TVout.h> 2#include "car.h" 3 4 5TVout TV; 6 7void setup() { 8 // put your setup code here, to run once: 9TV.begin(_PAL, 128, 96); 10 11} 12 13void loop() { 14 // put your main code here, to run repeatedly: 15TV.clear_screen(); 16TV.bitmap(10, 10, car); 17delay(60); 18} 19
Downloadable files
Arduino TVout shematic
Arduino TVout shematic

Comments
Only logged in users can leave comments