Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- time = 1
- side = "back"
- print("I am pulsing every "..time.." sec to the "..side..".")
- while true do
- redstone.setOutput(side,true)
- os.sleep(0.1)
- redstone.setOutput(side,false)
- os.sleep(time)
- end
Advertisement
Add Comment
Please, Sign In to add comment