This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Pikeman270's profile picture

Make existing program run on computer terminal instead of monitor

Started by Pikeman270, 13 November 2016 - 03:39 AM
Pikeman270 #1
Posted 13 November 2016 - 04:39 AM
Hi, I have a program I've been working on that's coded entirely to appear on a monitor. I've wrapped it as mon = peripheral.wrap("left") is there any way I can redirect it to make it follow the code except on the terminal screen

Nevermind I figured it out… just did mon = term instead.
Bomb Bloke #2
Posted 13 November 2016 - 06:40 AM
mon = term.current()

… would be a bit safer.