Printer Disassembly 1

From FreekiWiki
Revision as of 23:18, 29 April 2008 by Koopa (talk | contribs) (Printer Disassembly moved to Printer Disassembly 1: Breaking recycling into two processes)
Jump to navigation Jump to search

This triage sheet only applies to machines that are on the "Recyclables" shelves in Printer Island.

<graphviz> digraph{

  node [fontname="Helvetica", fontsize="11"]
  edge [fontname="Helvetica"]

start [label="START HERE"] with_x [label="Is it marked\nwith an 'X'?", shape="box"] no_x [label="Put it back on\nincoming pile"] yes_x [label="Remove outer plastic.\nDisassemble paper tray.\nPut plastic in bin."] ink [label="Does it take\nink cartridges?", shape="box"] yes_ink [label="Remove any ink\nand put in bin."] no_ink [label="Can you see any RAM\nor Network Cards?", shape="box"] yes_extras [label="Remove them and\nset aside if you can\ndo it in less than\n1 minute."] circuit_board [label="Can you remove\nthe main circuit\nboard in less than\n1 minute?", shape="box"] stripped [label="Throw everything into the\n'Stripped Printers' gaylord."] remove_board [label="Remove it and\nplace in circuit\nboard bin"]

start -> with_x with_x -> yes_x [label="YES"] with_x -> no_x [label="NO"] yes_x -> ink ink -> yes_ink [label="YES"] ink -> no_ink [label="NO"] yes_ink -> circuit_board no_ink -> yes_extras [label="YES"] no_ink -> circuit_board [label="NO"] yes_extras -> circuit_board circuit_board -> remove_board [label="YES"] circuit_board -> stripped [label="NO"] remove_board -> stripped