ecco7777

CC scrolling Digital Clock

Apr 27th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. m=peripheral.wrap("top")
  2. m.setTextScale(5)
  3. monX,monY=m.getSize()
  4. while true do
  5. for i=-#textutils.formatTime(os.time()),monX do
  6. m.setCursorPos(i,1)
  7. m.write(textutils.formatTime(os.time()))
  8. sleep(0.5)
  9. m.clear()
  10. end
  11. end
Add Comment
Please, Sign In to add comment