Advertisement
Guest User

startup

a guest
Aug 29th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. m = peripheral.wrap("back")
  2. data = m.get()
  3. wr = peripheral.wrap("top")
  4. --for i, j in pairs(data) do
  5.   --print(tostring(i).."; ".. tostring(j))
  6. --end
  7.  
  8. function clearSet()
  9.   term.clear()
  10.   term.setCursorPos(1,1)
  11. end
  12.  
  13. while true do
  14.  input = rs.getInput("right")
  15.   if data["Full Energy"] and input == true then
  16.      wr.setFreq(30)
  17.      rs.setOutput("top", true")
  18.  else
  19.     clearSet()
  20.     print("waiting for change")
  21.     rs.setOutput("top", false)
  22.  end
  23. os.pullEvent("redstone")
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement