document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <fontALL.h>
  2. #include <TVout.h>
  3.  
  4. TVout TV;
  5.  
  6. void setup() {
  7. TV.begin(PAL,120,96); //imposto la modalità PAL ed una risoluzione di 120 x 96
  8. TV.clear_screen();
  9. }
  10.  
  11. void loop() {
  12. TV.clear_screen(); //puliamo lo schermo
  13. TV.select_font(font8x8); //seleziono carattere 8x8
  14. TV.println("BACHECA");
  15. TV.select_font(font4x6); //seleziono carattere 4x6
  16. TV.println("");
  17. TV.println("NOTIZIE:");
  18. TV.println("");
  19. TV.println("Questo e un test d'esempio riguardante la bacheca elettronica appena costruita!");
  20. TV.println("");
  21. delay(10000);
  22. }
');