Advertisement
RyuuzakiJulio

PulseConfig

Feb 28th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. -- Pulse
  2. term.clear()
  3. term.setCursorPos(1,1)
  4.  
  5. print("What side?")
  6.  
  7. side = read()
  8.  
  9. print("Speed?")
  10.  
  11. speed = read()
  12.  
  13. print("Starting pulses...")
  14. while true do
  15. rs.setOutput(side, true)
  16. term.setCursorPos(2,6)
  17. print("Status: ON ")
  18. sleep(speed/2)
  19. rs.setOutput(side, false)
  20. term.setCursorPos(2,6)
  21. print("Status: OFF ")
  22. sleep(speed/2)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement