mon = peripheral.wrap("front") term.getSize() for i=1,15 do mon.clearLine() mon.setCursorPos(1,1) mon.write(i) rs.setAnalogOutput("left", true) mon.write("Set 1 on") mon.setCursorPos(1,4) os.sleep(800) rs.setAnalogOutput("right", true) mon.clear() mon.clearLine() mon.write("2 is on") mon.setCursorPos(1,1) mon.write("Set 1 off") rs.setAnalogOutput("left", false) mon.setCursorPos(1,1) mon.clear() mon.clearLine() mon.write("Set 2 on") rs.setAnalogOutput("left", false) os.sleep(800) mon.setCursorPos(3,3) mon.clear() mon.setCursorPos(1,6) mon.clearLine() mon.write(i) end