Advertisement
Guest User

MyCode

a guest
Feb 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <TVout.h>
  2. #include <fontALL.h>
  3.  
  4. TVout TV;
  5.  
  6. void setup() {
  7. TV.begin(NTSC, 120, 96);
  8. TV.select_font(font8x8);
  9. TV.draw_line(90,72,45,5,1);
  10. TV.draw_line(90,24,45,5,1);
  11. }
  12.  
  13. void loop() {
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement