rename help files with .txt - overlay.lua creates a terminal compatible window on the overlay glasses - you can now run any program on the glasses overlay

This commit is contained in:
kepler155c@gmail.com
2020-05-02 22:22:30 -06:00
parent 8a9878b8e5
commit 9bf017fe27
13 changed files with 258 additions and 146 deletions

View File

@@ -1,11 +1,12 @@
local Util = require('opus.util')
local device = _G.device
local os = _G.os
local peripheral = _G.peripheral
local term = _G.term
local args = { ... }
local mon = args[1] and peripheral.wrap(args[1]) or
local mon = args[1] and device[args[1]] or peripheral.wrap(args[1]) or
peripheral.find('monitor') or
error('Syntax: debug <monitor>')