Monitor

From ComputerCraft Wiki
Revision as of 10:05, 20 January 2013 by Eric (Talk | contribs) (Peripheral Functions)

Jump to: navigation, search
Grid workbench.png   Monitor
Iso Monitor.png
Item ID 4094
Damage Value 0
Peripheral? Yes

The Monitor is a block that can display text on its front side. When several screen blocks are placed on the same plane, it will form a single monitor. It is useful for displaying information at a server spawn, showing a program on the monitor, and even showing the status of an IC2 reactor! (provided you have CcSensors installed)

Recipe

stone

stone

stone

stone

glass_pane

stone

stone

stone

stone

Monitor


Using the Monitor

A 2x2 Monitor, connected to a Computer, with a Disk Drive connected.

The command used to control a monitor: monitor [top, bottom, left, right, front or back] [the name of the command to display]

So, in this case, if you typed "hello" in the name of the program part, the monitor would display "Hello World!".

Using the Monitor within the Lua interface

The monitor can be summoned through a command or through coding with the Lua command.

The command used to control a monitor within the Lua interface: shell.run("monitor" "[top, bottom, left, right, front or back]" "[the name of the command to display]")

For example, here is a way of summoning the monitor through a command:

print("Hello Monitor!")

shell.run("monitor", "right", "hello")

See also

Monitor (API)