Posted 22 February 2014 - 11:53 AM
I want to show a text one 2 monitors whit the use of only one computer.
I currently use this code:
monitor = peripheral.wrap("left")
monitor.clear()
monitor.setCursorPos(1,1)
monitor.setTextScale(2)
monitor.write("test")
I want to show it also on the right monitor
I currently use this code:
monitor = peripheral.wrap("left")
monitor.clear()
monitor.setCursorPos(1,1)
monitor.setTextScale(2)
monitor.write("test")
I want to show it also on the right monitor