Theo123456

Time

Nov 27th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. -- Source: http://pastebin.com/aa9ZgAM7
  2. -- Name: time
  3. -- Auteur: pirmax
  4. -- Date: Vendredi 1 Aoรปt 2014
  5. -- PastebinGET: pastebin get aa9ZgAM7 time
  6.  
  7.  
  8. screen = peripheral.wrap("back")
  9. screen = setTextScale(5)
  10. term.redirect(screen)
  11.  
  12. while true do
  13.  
  14. term.setCursorPos(1, 1)
  15.  
  16. time = http.get("http://www.timeapi.org/cet/now?format=%20%25H:%25M:%25S").readAll()
  17. write(time)
  18.  
  19. end
  20.  
  21. term.restore()
Add Comment
Please, Sign In to add comment