Monitor (ComputerCraft)
Talk0this wiki

Added by Mdouglas3The ComputerCraft Monitor is a peripheral that allows a Console to display things without being close to it or opening the console GUI. When placed together, they will form a single, bigger, monitor. The largest monitor able to be created is 8 long by 6 high.
Recipe
Edit
How to use
Edit

Added by JpzgIn the console, a program can be run by using the monitor command in the console with the following format:
monitor <side> <program>
but this means that if you have a program that starts automatically, such as something to display IC2 Nuclear Reactor information, it won't start up displaying information on the monitor, it will just display it on the console.

Added by MultablokdIncIf you type "monitor <side> shell", other things you type will show up on the monitor on <side> instead of the GUI. Doing this saves you the trouble of using "monitor <side> <program>", but if you want to stop doing so, you need to break and replace (or reboot) the computer.
You can instead use the code (in LUA mode):
side = "" -Enter left, right, or any other valid side inside the quotations term.redirect(peripheral.wrap(side))
but this will put everything on the monitor that would normally be on the console. Even if you open the GUI and enter another command, it will display on the monitor instead, which is inconvient as you have to close the GUI and look at the monitor to see if you typed something right. Instead, in your code, you can say:
mon = peripheral.wrap("side")
where side is the side the monitor is on. Now if you want to, say print something on the monitor, you can type:
mon.write("Hello world!")
And it will have the desired effect.
To clear the entire using code, type in
mon.clear()
And to reset the position of the cursor,
mon.setCursorPos(x,y)
Keep in mind that these commands do not come with the computer. These are all Lua type commands, which means that you have to make a program to utilize them.
For something simple, type this in the console: monitor <Side> secret/alongtimeago
Now for an example program, this runs a clock on a 1x2 or 1x3 monitor
side = "back" --This is the side of the monitor text = "Put company name ect here" mon = peripheral.wrap(side) mon.setTextScale(2) while true do mon.setCursorPos(1,1) mon.write(text) mon.setCursorPos(1,2) mon.write(textutils.formatTime(os.time(),false)) -- use true for 12h time sleep(1) mon.clear() term.setCursorPos(1,1) end
To end the program just hold [ctrl] + T
