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.











