screen = peripheral.wrap("back")
screen = setTextScale(5)
term.redirect(screen)

  while true do
  
  term.setCursorPos(1, 1)
  
  time = http.get("http://www.timeapi.org/cet/now?format=%20%25H:%25M:%25S").readAll()
  write(time)
  
  end  
  
term.restore()  
  
  
