Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function clickCheck()
- if mouseWidth>18 and mouseWidth<23 and mouseHeight==2 then
- rs.setOutput("left", true)
- m.setBackgroundColor((colors.red))
- m.setCursorPos(18,2)
- m.write(" On ")
- m.setBackgroundColor((colors.lime))
- m.setCursorPos(24,2)
- m.write(" Off ")
- m.setBackgroundColor((colors.black))
- end
- if mouseWidth>24 and mouseWidth<29 and mouseHeight==2 then
- rs.setOutput("left", false)
- m.setBackgroundColor((colors.lime))
- m.setCursorPos(18,2)
- m.write(" On ")
- m.setBackgroundColor((colors.red))
- m.setCursorPos(24,2)
- m.write(" Off ")
- m.setBackgroundColor((colors.black))
- end
- end
- mouseWidht=0
- mouseHeight=0
- m=peripheral.wrap("top")
- m.clear()
- m.setCursorPos(1,1)
- w,h=m.getSize()
- m.setBackgroundColor((colors.lime))
- --Lamp--
- m.setCursorPos(18,2)
- m.write(" On ")
- m.setCursorPos(24,2)
- m.write(" Off ")
- --Me System--
- m.setCursorPos(18,4)
- m.write(" On ")
- m.setCursorPos(24,4)
- m.write(" Off ")
- --Tekst p�A5 sk�A6m--
- m.setBackgroundColor((colors.black))
- m.setCursorPos(2,2)
- m.write(" Lamp ")
- m.setCursorPos(2,4)
- m.write(" Me System ")
- repeat
- event,p1,p2,p3=os.pullEvent()
- if event=="monitor_touch" then
- mouseWidth=p2
- mouseHeight=p3
- clickCheck()
- end
- until event=="char" and p1("x")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement