Astranome

tv

Jun 15th, 2020
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <TVout.h>
  2. TVout TV;
  3. unsigned char x, y;
  4. void setup ( )
  5. {
  6. TV.start_render( _NTSC );
  7. }
  8. void loop ( )
  9. {
  10. TV.clear_screen ( );
  11. TV.print_str ( 10, 10, «TVout FTW!!!» );
  12. TV.delay ( 60 );
  13. }
Add Comment
Please, Sign In to add comment