first commit

This commit is contained in:
Jérôme Delacotte
2025-03-06 11:15:32 +01:00
commit 7b30d6e298
5276 changed files with 2108927 additions and 0 deletions

24
TV_SERIAL/TV_SERIAL.ino Executable file
View File

@@ -0,0 +1,24 @@
#include <TVout.h>
#include <pollserial.h>
#include <fontALL.h>
TVout TV;
pollserial pserial;
void setup() {
TV.begin(_NTSC,184,72);
TV.select_font(font6x8);
TV.println("Serial Terminal");
TV.println("-- Version 0.1 --");
//TV.set_hbi_hook(pserial.begin(57600));
pserial.begin(57600);
}
void loop() {
if (pserial.available()) {
TV.print((char)pserial.read());
}
}