Difference between revisions of "Advanced Monitor"

From ComputerCraft Wiki
Jump to: navigation, search
(Updated/Improved)
(Using an Advanced Monitor)
Line 32: Line 32:
 
  local monitor = [[peripheral.wrap]]( "top" )
 
  local monitor = [[peripheral.wrap]]( "top" )
 
  [[term.write|monitor.write]]( "Hello World!" )
 
  [[term.write|monitor.write]]( "Hello World!" )
 +
 +
== History ==
 +
{{History|head}}
 +
{{History|1.45|Added Advanced Monitors.}}
 +
{{History|1.48|Changed crafting recipe.|Can now be used as touchscreens.}}
 +
{{History|1.51|Event <code>monitor_resize</code> is send when rezising the monitor.}}
 +
{{History|1.53|Can now be placed on floors and ceilings.}}
 +
{{History|1.55|Tweaked screen colours.}}
 +
{{History|1.75|Fixed rendering.}}
 +
{{History|foot}}
  
 
{{BlocksItemsList}}
 
{{BlocksItemsList}}
 +
 
[[Category:Blocks]]
 
[[Category:Blocks]]

Revision as of 06:45, 2 August 2020

Grid workbench.png   Advanced Monitor
Iso Advanced Monitor.png
Item ID ComputerCraft:CC-Peripheral
Damage Value 4
Peripheral? Yes- Term (API)

The Advanced Monitor is a Monitor that has mouse (as 'punches') support, and can use the Color API for screen colors. They resemble the traditional computer console, but are golden coloured to match their crafting recipe. By default, an advanced monitor has a resolution of 7 pixels horizontally by 5 pixels horizontally, but this can be increased by using the monitor API and combining monitors (see explanation on the resolution page).

Recipe

Gold_Ingot

Gold_Ingot

Gold_Ingot

Gold_Ingot

glass_pane

Gold_Ingot

Gold_Ingot

Gold_Ingot

Gold_Ingot

Advanced_Monitor

Advanced_Monitor

Advanced_Monitor



Using an Advanced Monitor

The Advanced Monitor behaves exactly the same as the standard Monitor - except the Advanced Monitor is able to render text with a foreground and background color.

The Advanced Monitor introduces two new methods: monitor.setTextColor(color) and monitor.setBackgroundColor(color). These functions allow you to draw text with a specific foreground and background color. Please note that both spellings of the word color are accepted.

To use an Advanced Monitor, you need to either call a method directly using peripheral.call(), or, wrap the monitor using the Peripheral API. Wrapped monitors provide all functions listed in the Term API, with the exception of monitor.setTextScale(size), which is native to monitors only.

For this example, we have an Advanced Monitor connected to the top of our Computer:

-- Immediately invoke a method without wrapping
peripheral.call( "top", "write", "Hello World!" )
-- You can also "wrap" the peripheral side to a variable:
local monitor = peripheral.wrap( "top" )
monitor.write( "Hello World!" )

History

1.45Added Advanced Monitors.
1.48Changed crafting recipe.
Can now be used as touchscreens.
1.51Event monitor_resize is send when rezising the monitor.
1.53Can now be placed on floors and ceilings.
1.55Tweaked screen colours.
1.75Fixed rendering.
Grid Redstone.pngComputerCraft Blocks and Items
Grid paper.png  Blocks
 Iso Computer.png  Computer Iso Advanced Computer.png  Advanced Computer Iso Command Computer.png  Command Computer Iso DiskDrive.png  Disk Drive
 Iso Monitor.png  Monitor Iso Advanced Monitor.png  Advanced Monitor Iso Printer.png  Printer Grid turtle.png  Turtle
 Grid Modem.png  Wireless Modem Grid Ender Modem.png  Ender Modem Grid Wired Modem.png  Wired Modem Grid Networking Cable.png  Networking Cable
Grid paper.png  Items
 Grid Pocket Computer.png  Pocket Computer Grid Advanced Pocket Computer.png  Advanced Pocket Computer Grid disk.png  Floppy Disk Grid printed page.png  Printed Page
 Grid printed pages.png  Printed Pages Grid printed book .png  Printed Book