Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- loadup = function()
- os.loadAPI("touchpoint")
- print("Touchpoint API Loaded")
- sleep(1)
- term.clear()
- term.setCursorPos(1,1)
- end
- loadup()
- local t = touchpoint.new("top")
- function BC()
- t:toggleButton("Bread and Carrots")
- if rs.getOutput("left") == true then
- rs.setOutput("left", false)
- else
- rs.setOutput("left", true)
- end
- end
- function WA()
- t:toggleButton("Wood and Apples")
- if rs.getOutput("right") == true then
- rs.setOutput("right", false)
- else
- rs.setOutput("right", true)
- end
- end
- function SU()
- t:toggleButton("Sugarcane")
- rednet.open("bottom")
- rednet.send(35, "SU")
- end
- buttonLoads = function()
- t:add("Bread and Carrots", BC, 2, 2, 20, 5, colors.red, colors.lime)
- t:add("Wood and Apples", WA, 2, 7, 20, 10, colors.red, colors.lime)
- t:add("Sugarcane", SU, 2, 12, 20, 15, colors.red, colors.lime)
- t:draw()
- end
- buttonLoads()
- t:run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement