DrFair

Pulser

Apr 2nd, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. time = 1
  2. side = "back"
  3.  
  4. print("I am pulsing every "..time.." sec to the "..side..".")
  5.  
  6.  
  7. while true do
  8. redstone.setOutput(side,true)
  9. os.sleep(0.1)
  10. redstone.setOutput(side,false)
  11. os.sleep(time)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment