#include <TVout.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.print(10, 10, "Hello, World!");
delay(60);
}