Advertisement
Guest User

test

a guest
Apr 15th, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.39 KB | None | 0 0
  1. function clickCheck()
  2.     if mouseWidth>18 and mouseWidth<23 and mouseHeight==2 then
  3.       rs.setOutput("left", true)
  4.       m.setBackgroundColor((colors.red))
  5.       m.setCursorPos(18,2)
  6.       m.write(" On  ")
  7.       m.setBackgroundColor((colors.lime))
  8.       m.setCursorPos(24,2)
  9.       m.write(" Off ")
  10.       m.setBackgroundColor((colors.black))
  11. end
  12.     if mouseWidth>24 and mouseWidth<29 and mouseHeight==2 then
  13.       rs.setOutput("left", false)
  14.       m.setBackgroundColor((colors.lime))
  15.       m.setCursorPos(18,2)
  16.       m.write(" On  ")
  17.       m.setBackgroundColor((colors.red))
  18.       m.setCursorPos(24,2)
  19.       m.write(" Off ")
  20.       m.setBackgroundColor((colors.black))
  21. end
  22.      
  23. end
  24.  
  25.   mouseWidht=0
  26.   mouseHeight=0
  27.   m=peripheral.wrap("top")
  28.   m.clear()
  29.   m.setCursorPos(1,1)
  30.   w,h=m.getSize()
  31.   m.setBackgroundColor((colors.lime))
  32. --Lamp--
  33.   m.setCursorPos(18,2)
  34.   m.write(" On  ")
  35.   m.setCursorPos(24,2)
  36.   m.write(" Off ")
  37. --Me System--
  38.   m.setCursorPos(18,4)
  39.   m.write(" On  ")
  40.   m.setCursorPos(24,4)
  41.   m.write(" Off ")
  42. --Tekst p�A5 sk�A6m--
  43.   m.setBackgroundColor((colors.black))
  44.   m.setCursorPos(2,2)
  45.   m.write(" Lamp ")
  46.   m.setCursorPos(2,4)
  47.   m.write(" Me System ")
  48.  
  49.    
  50. repeat
  51.     event,p1,p2,p3=os.pullEvent()
  52.     if event=="monitor_touch" then
  53.        mouseWidth=p2
  54.        mouseHeight=p3
  55.        clickCheck()
  56.     end
  57. until event=="char" and p1("x")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement