Posted 14 March 2014 - 10:29 PM
Ok, Basicly I have set up a system that allows me to control certain features of my base using a menu, the menu calls a function with the ID of the selected option, which is then put through a series of "If" statements until the values become true, that code is posted below:
I'm using rednet.broadcast() instead of rednet.send() as its only a temporary system, once its fully set up ill switch it too rednet.send().
I want to set it up so that when I activate one of the system it displays it on several monitors throughout my base. I know almost nothing about monitors and I could use some help!
The reason I want to send it too several monitors is because I plan to have several secure control rooms to control all the tasks that my turtles are doing and send error reports from them to the monitors so I can fix the problem quickly and reduce the turtles down time.
local function RednetSend()
if MenuSel == 1 then
rednet.broadcast("WHarvest")
end
if MenuSel == 2 then
rednet.broadcast("SHarvest")
end
if MenuSel == 3 then
rednet.broadcast("MFarm")
end
if MenuSel == 4 then
rednet.broadcast("")
end
end
I'm using rednet.broadcast() instead of rednet.send() as its only a temporary system, once its fully set up ill switch it too rednet.send().
I want to set it up so that when I activate one of the system it displays it on several monitors throughout my base. I know almost nothing about monitors and I could use some help!
The reason I want to send it too several monitors is because I plan to have several secure control rooms to control all the tasks that my turtles are doing and send error reports from them to the monitors so I can fix the problem quickly and reduce the turtles down time.