Mon = peripheral.wrap("right")
while true do
Mon.clear()
Mon.setCursorPos(1,1)
local time = os.time()
time = textutils.formatTime(time, false)
Mon.write("the time is "..time)
sleep(.83)
end
Using your existing code simply take all of the empty writes and use the...