Posted 31 October 2015 - 07:38 AM
Good morning programmers!
I want to make next scoreboard for multy sport arena and there i need at least 4 monitors(scorboard). All monitorsare connected but i want that all 4 monitors shows same.
If i try "find" then worksonly last monitor.
Thereare my code:
mon.clear()
mon.setCursorPos(1,1)
mon.write("CA 70")
term.clear()
print("CA700 scoreboard system.")
sleep(2)
print("Loading data.")
sleep(2)
print("Reseting time lamp.")
rs.setOutput("right",true)
sleep(2)
print("Launching scoreboard.")
mon.clear()
mon.setTextColor(colors.black)
mon.setCursorPos(1,2)
mon.setTextScale(5)
rs.setOutput("right",false)
sleep(3)
rs.setOutput("right",false)
rs.setOutput("right",true)
term.clear()
term.setCursorPos(1,1)
print("CA700") –only need minutes
print("1-nos 2- t 3-p 4- arez 5- brez")
local mon = peripheral.wrap('monitor_2')
mon.clear()
mon.setCursorPos(1,1)
mon.setTextScale(3)
mon.write("VEF INZENIERU CENTRS")
mon.setBackgroundColor(colors.black)
mon.setTextColor(colors.white)
mon.setTextScale(5)
mon.setCursorPos(1,1)
mon.write("CA70")
mon.setCursorPos(8,3)
mon.write("1")
mon.setCursorPos(1,1)
mon.setTextScale(5)
mon.setCursorPos(7,5)
mon.write("–")
mon.setCursorPos(8,5)
mon.write(":")
mon.setCursorPos(9,5)
mon.write("–")
mon.setCursorPos(4,3)
mon.write("0")
mon.setCursorPos(13,3)
mon.write("0")
term.clear()
sleep(2)
shell.run("m")
I want to make next scoreboard for multy sport arena and there i need at least 4 monitors(scorboard). All monitorsare connected but i want that all 4 monitors shows same.
If i try "find" then worksonly last monitor.
Thereare my code:
Spoiler
local mon = peripheral.wrap('monitor_2')mon.clear()
mon.setCursorPos(1,1)
mon.write("CA 70")
term.clear()
print("CA700 scoreboard system.")
sleep(2)
print("Loading data.")
sleep(2)
print("Reseting time lamp.")
rs.setOutput("right",true)
sleep(2)
print("Launching scoreboard.")
mon.clear()
mon.setTextColor(colors.black)
mon.setCursorPos(1,2)
mon.setTextScale(5)
rs.setOutput("right",false)
sleep(3)
rs.setOutput("right",false)
rs.setOutput("right",true)
term.clear()
term.setCursorPos(1,1)
print("CA700") –only need minutes
print("1-nos 2- t 3-p 4- arez 5- brez")
local mon = peripheral.wrap('monitor_2')
mon.clear()
mon.setCursorPos(1,1)
mon.setTextScale(3)
mon.write("VEF INZENIERU CENTRS")
mon.setBackgroundColor(colors.black)
mon.setTextColor(colors.white)
mon.setTextScale(5)
mon.setCursorPos(1,1)
mon.write("CA70")
mon.setCursorPos(8,3)
mon.write("1")
mon.setCursorPos(1,1)
mon.setTextScale(5)
mon.setCursorPos(7,5)
mon.write("–")
mon.setCursorPos(8,5)
mon.write(":")
mon.setCursorPos(9,5)
mon.write("–")
mon.setCursorPos(4,3)
mon.write("0")
mon.setCursorPos(13,3)
mon.write("0")
term.clear()
sleep(2)
shell.run("m")