I have to write a little test program to understand How can I write text on the second screen, and I can't understand, what I do wrong.
That's the code
local component = require ("component")
local term = require("term")
local gpu2a = component.get("7ba")
local gpu2 = component.proxy(gpu2a)
local scr2a = component.get("e6e")
local scr2 = component.proxy(scr2a)
gpu2.bind(scr2a)
term.write("Hello")
--gpu2.setBackground(0xe9ebe4)
gpu2.setResolution(36,5)
gpu2.setForeground(0xd98116)
gpu2.fill(1,1,36,5, "X")
os.sleep(0.9)
http://pastebin.com/RxVTmdp4
gpu2