Advertisement
Bjornalf

Frame Elevator touch screen input

Mar 17th, 2013
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. local event = "test"
  2. local side = "test"
  3. local mX = 0
  4. local mY = 0
  5. Mon = peripheral.wrap("right")
  6. rednet.open("back")
  7. Mon.setTextScale(1)
  8. Mon.clear()
  9. Mon.setTextColor(colors.lightBlue)
  10. Mon.setCursorPos(3,1)
  11. Mon.write("Top")
  12. Mon.setTextColor(colors.lime)
  13. Mon.setCursorPos(1,3)
  14. Mon.write("Second")
  15. Mon.setTextColor(colors.brown)
  16. Mon.setCursorPos(1,5)
  17. Mon.write("Ground")
  18.  
  19. local event,side,mX,mY=os.pullEvent("monitor_touch")
  20.  
  21. term.clear()
  22. print(event)
  23. print(side)
  24. print(mX)
  25. print(mY)
  26.  
  27. if mY == 1 then
  28. print("TOP")
  29.   rednet.send(1, "mountain")
  30. else
  31.   if mY == 3 then
  32.     print("SECOND")
  33.     rednet.send(1, "second")
  34.   else
  35.     print("GROUND")
  36.     rednet.send(1, "ground")
  37.   end
  38. end
  39. shell.run("panel")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement