m = peripheral.wrap("top")
term.redirect(m)

while true do
m.clear()
m.setTextScale(2)
m.setCursorPos(2,2)
m.setTextColor(colors.cyan)
m.write("STAR")
m.setCursorPos(5,3)
m.write("BASE")
m.setCursorPos(4,5)
m.setTextColor(colors.orange)
m.write("S-2")
sleep(3)

m.clear()
m.setBackgroundColor(colors.black)
m.setTextScale(.5)
m.setTextColor(colors.white)
m.setCursorPos(2,20)
m.write("To boldly go where no man")
m.setCursorPos(16,21)
m.write("has gone...before...")
local image = paintutils.loadImage("ent.nfp")
paintutils.drawImage(image,1,3)
sleep(3)

end
