Jump to content

IAmChosen

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by IAmChosen

  1. startup file

    shell.run("monitor","top","<PROGRAM NAME>")
    
    
     
    
    Then make the program, inserting the location of the program instead of <PROGRAM NAME>
    
    Note that all 3 argument of shell.run need quotes around them.
    Thanks so much! That worked! I just didn't know there had to be commas.
    Create a program called startup.

    local mon = peripheral.wrap(“top”)
    
    mon.clear()
    
    mon.setCursorPos(1,1)
    
    mon.write(“Random crap”)
    
    mon.setCursorPos(1,2) — line break, because the peripheral api does not have a print method.
    
    mon.write(“More random crap”)
    
    etc.

    Thanks, but I knew this method. It was just too tedious.

×
×
  • Create New...