So I've been playing with Arduino and the TVout library... fun, fun, fun!
#include <TVout.h> #include <TVoutfonts/fontALL.h> #include "TVOlogo.h" TVout TV; void setup(){ TV.begin(_PAL); // for PAL system TV.clear_screen(); } void loop(){ TV.select_font(font4x6); TV.set_cursor(0,0); TV.print("All work"); TV.set_cursor(0,7); TV.print("and no play"); TV.set_cursor(0,14); TV.print("makes Jack a dull boy..."); TV.bitmap(0,21,TVOlogo); }
Refs.:
- http://tronixstuff.com/2011/05/30/tutorial-video-output-from-your-arduino/
- http://www.javiervalcarce.eu/html/arduino-tv-signal-generator-en.html
Happy hacking!
Created: 14-07-2016 [15:04]
Last updated: 23-01-2025 [00:04]
For attribution, please cite this page as:
Charters, T., "All work and no play...": https://nexp.pt/tvout-arduino.html (23-01-2025 [00:04])
(cc-by-sa) Tiago Charters - tiagocharters@nexp.pt