├── .gitignore ├── PCB files ├── 5001-stepper-drivers │ ├── EAGLE │ │ ├── 5001-stepper-drivers.brd │ │ └── 5001-stepper-drivers.sch │ └── Schematic:Layout PDFs │ │ ├── 5001-layout.pdf │ │ └── 5001-schematic.pdf ├── 5002-z-endstops │ ├── EAGLE │ │ ├── 5002-z-endstops.brd │ │ └── 5002-z-endstops.sch │ └── Schematic:Layout PDFs │ │ ├── 5002-layout.pdf │ │ └── 5002-schematic.pdf ├── 5019-front-window │ ├── EAGLE │ │ ├── 5019-front-window.brd │ │ └── 5019-front-window.sch │ └── Schematic:Layout PDFs │ │ ├── 5019-layout.pdf │ │ └── 5019-schematic.pdf ├── 5021-power-usb │ ├── EAGLE │ │ ├── 5021-power-usb.brd │ │ └── 5021-power-usb.sch │ └── Schematic:Layout PDFs │ │ ├── 5021-layout.pdf │ │ └── 5021-schematic.pdf ├── 5022-central-routing │ ├── EAGLE │ │ ├── 5022-central-routing.brd │ │ └── 5022-central-routing.sch │ └── Schematic:Layout PDFs │ │ ├── 5022-layout.pdf │ │ └── 5022-schematic.pdf ├── 5023-usb-left │ ├── EAGLE │ │ ├── 5023-usb-left.brd │ │ └── 5023-usb-left.sch │ └── Schematic:Layout PDFs │ │ ├── 5023-layout.pdf │ │ └── 5023-schematic.pdf ├── 5024-usb-right │ ├── EAGLE │ │ ├── 5024-usb-right.brd │ │ └── 5024-usb-right.sch │ └── Schematic:Layout PDFs │ │ ├── 5024-layout.pdf │ │ └── 5024-schematic.pdf ├── 5025-rasp-pi-shield │ ├── EAGLE │ │ ├── 5025-rasp-pi-shield.brd │ │ └── 5025-rasp-pi-shield.sch │ └── Schematic:Layout PDFs │ │ ├── 5025-layout.pdf │ │ └── 5025-schematic.pdf ├── 5026-front-frame │ ├── EAGLE │ │ ├── 5026-front-frame.brd │ │ └── 5026-front-frame.sch │ └── Schematic:Layout PDFs │ │ ├── 5026-Layout.pdf │ │ └── 5026-Schematic.pdf ├── 5027-tip-probe │ ├── EAGLE │ │ ├── 5027-tip-probe.brd │ │ └── 5027-tip-probe.sch │ └── Schematic:Layout PDFs │ │ ├── 5027-layout.pdf │ │ └── 5027-schematic.pdf ├── 5030-top-window │ ├── EAGLE │ │ ├── 5030-top-window.brd │ │ └── 5030-top-window.sch │ └── Schematic:Layout PDFs │ │ ├── 5030-layout.pdf │ │ └── 5030-schematic.pdf ├── pipette-endstop │ ├── EAGLE │ │ ├── pipette-endstop.brd │ │ └── pipette-endstop.sch │ └── Schematic:Layout PDFs │ │ ├── pipette-endstop-layout.pdf │ │ └── pipette-endstop-schematic.pdf └── pipette-main │ ├── EAGLE │ ├── pipette-main.brd │ └── pipette-main.sch │ └── Schematic:Layout PDFs │ ├── pipette-main-layout.pdf │ └── pipette-main-schematic.pdf ├── README.md ├── deck └── CNC_DECK_RevA2.DXF ├── reference-model ├── JPG │ ├── OT-2 Reference Model Basic.jpg │ └── OT-2 Reference Model Detailed.jpg ├── STEP │ ├── OT-2 Reference Model Basic.STEP │ └── OT-2 Reference Model Detailed.STEP └── STL │ ├── OT-2 Reference Model Basic.STL │ └── OT-2 Reference Model Detailed.STL └── windows ├── REAR_WINDOW_RevA.DXF ├── SIDE_WINDOW_RevA1.DXF ├── TOP_WINDOW_RevA2.DXF ├── WINDOW_FRONT-BOTTOM_RevA.DXF └── WINDOW_FRONT-TOP_RevA.DXF /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/.gitignore -------------------------------------------------------------------------------- /PCB files/5001-stepper-drivers/EAGLE/5001-stepper-drivers.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5001-stepper-drivers/EAGLE/5001-stepper-drivers.brd -------------------------------------------------------------------------------- /PCB files/5001-stepper-drivers/EAGLE/5001-stepper-drivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5001-stepper-drivers/EAGLE/5001-stepper-drivers.sch -------------------------------------------------------------------------------- /PCB files/5001-stepper-drivers/Schematic:Layout PDFs/5001-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5001-stepper-drivers/Schematic:Layout PDFs/5001-layout.pdf -------------------------------------------------------------------------------- /PCB files/5001-stepper-drivers/Schematic:Layout PDFs/5001-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5001-stepper-drivers/Schematic:Layout PDFs/5001-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5002-z-endstops/EAGLE/5002-z-endstops.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5002-z-endstops/EAGLE/5002-z-endstops.brd -------------------------------------------------------------------------------- /PCB files/5002-z-endstops/EAGLE/5002-z-endstops.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5002-z-endstops/EAGLE/5002-z-endstops.sch -------------------------------------------------------------------------------- /PCB files/5002-z-endstops/Schematic:Layout PDFs/5002-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5002-z-endstops/Schematic:Layout PDFs/5002-layout.pdf -------------------------------------------------------------------------------- /PCB files/5002-z-endstops/Schematic:Layout PDFs/5002-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5002-z-endstops/Schematic:Layout PDFs/5002-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5019-front-window/EAGLE/5019-front-window.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5019-front-window/EAGLE/5019-front-window.brd -------------------------------------------------------------------------------- /PCB files/5019-front-window/EAGLE/5019-front-window.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5019-front-window/EAGLE/5019-front-window.sch -------------------------------------------------------------------------------- /PCB files/5019-front-window/Schematic:Layout PDFs/5019-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5019-front-window/Schematic:Layout PDFs/5019-layout.pdf -------------------------------------------------------------------------------- /PCB files/5019-front-window/Schematic:Layout PDFs/5019-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5019-front-window/Schematic:Layout PDFs/5019-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5021-power-usb/EAGLE/5021-power-usb.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5021-power-usb/EAGLE/5021-power-usb.brd -------------------------------------------------------------------------------- /PCB files/5021-power-usb/EAGLE/5021-power-usb.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5021-power-usb/EAGLE/5021-power-usb.sch -------------------------------------------------------------------------------- /PCB files/5021-power-usb/Schematic:Layout PDFs/5021-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5021-power-usb/Schematic:Layout PDFs/5021-layout.pdf -------------------------------------------------------------------------------- /PCB files/5021-power-usb/Schematic:Layout PDFs/5021-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5021-power-usb/Schematic:Layout PDFs/5021-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5022-central-routing/EAGLE/5022-central-routing.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5022-central-routing/EAGLE/5022-central-routing.brd -------------------------------------------------------------------------------- /PCB files/5022-central-routing/EAGLE/5022-central-routing.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5022-central-routing/EAGLE/5022-central-routing.sch -------------------------------------------------------------------------------- /PCB files/5022-central-routing/Schematic:Layout PDFs/5022-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5022-central-routing/Schematic:Layout PDFs/5022-layout.pdf -------------------------------------------------------------------------------- /PCB files/5022-central-routing/Schematic:Layout PDFs/5022-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5022-central-routing/Schematic:Layout PDFs/5022-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5023-usb-left/EAGLE/5023-usb-left.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5023-usb-left/EAGLE/5023-usb-left.brd -------------------------------------------------------------------------------- /PCB files/5023-usb-left/EAGLE/5023-usb-left.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5023-usb-left/EAGLE/5023-usb-left.sch -------------------------------------------------------------------------------- /PCB files/5023-usb-left/Schematic:Layout PDFs/5023-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5023-usb-left/Schematic:Layout PDFs/5023-layout.pdf -------------------------------------------------------------------------------- /PCB files/5023-usb-left/Schematic:Layout PDFs/5023-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5023-usb-left/Schematic:Layout PDFs/5023-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5024-usb-right/EAGLE/5024-usb-right.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5024-usb-right/EAGLE/5024-usb-right.brd -------------------------------------------------------------------------------- /PCB files/5024-usb-right/EAGLE/5024-usb-right.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5024-usb-right/EAGLE/5024-usb-right.sch -------------------------------------------------------------------------------- /PCB files/5024-usb-right/Schematic:Layout PDFs/5024-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5024-usb-right/Schematic:Layout PDFs/5024-layout.pdf -------------------------------------------------------------------------------- /PCB files/5024-usb-right/Schematic:Layout PDFs/5024-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5024-usb-right/Schematic:Layout PDFs/5024-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5025-rasp-pi-shield/EAGLE/5025-rasp-pi-shield.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5025-rasp-pi-shield/EAGLE/5025-rasp-pi-shield.brd -------------------------------------------------------------------------------- /PCB files/5025-rasp-pi-shield/EAGLE/5025-rasp-pi-shield.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5025-rasp-pi-shield/EAGLE/5025-rasp-pi-shield.sch -------------------------------------------------------------------------------- /PCB files/5025-rasp-pi-shield/Schematic:Layout PDFs/5025-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5025-rasp-pi-shield/Schematic:Layout PDFs/5025-layout.pdf -------------------------------------------------------------------------------- /PCB files/5025-rasp-pi-shield/Schematic:Layout PDFs/5025-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5025-rasp-pi-shield/Schematic:Layout PDFs/5025-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5026-front-frame/EAGLE/5026-front-frame.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5026-front-frame/EAGLE/5026-front-frame.brd -------------------------------------------------------------------------------- /PCB files/5026-front-frame/EAGLE/5026-front-frame.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5026-front-frame/EAGLE/5026-front-frame.sch -------------------------------------------------------------------------------- /PCB files/5026-front-frame/Schematic:Layout PDFs/5026-Layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5026-front-frame/Schematic:Layout PDFs/5026-Layout.pdf -------------------------------------------------------------------------------- /PCB files/5026-front-frame/Schematic:Layout PDFs/5026-Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5026-front-frame/Schematic:Layout PDFs/5026-Schematic.pdf -------------------------------------------------------------------------------- /PCB files/5027-tip-probe/EAGLE/5027-tip-probe.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5027-tip-probe/EAGLE/5027-tip-probe.brd -------------------------------------------------------------------------------- /PCB files/5027-tip-probe/EAGLE/5027-tip-probe.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5027-tip-probe/EAGLE/5027-tip-probe.sch -------------------------------------------------------------------------------- /PCB files/5027-tip-probe/Schematic:Layout PDFs/5027-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5027-tip-probe/Schematic:Layout PDFs/5027-layout.pdf -------------------------------------------------------------------------------- /PCB files/5027-tip-probe/Schematic:Layout PDFs/5027-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5027-tip-probe/Schematic:Layout PDFs/5027-schematic.pdf -------------------------------------------------------------------------------- /PCB files/5030-top-window/EAGLE/5030-top-window.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5030-top-window/EAGLE/5030-top-window.brd -------------------------------------------------------------------------------- /PCB files/5030-top-window/EAGLE/5030-top-window.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5030-top-window/EAGLE/5030-top-window.sch -------------------------------------------------------------------------------- /PCB files/5030-top-window/Schematic:Layout PDFs/5030-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5030-top-window/Schematic:Layout PDFs/5030-layout.pdf -------------------------------------------------------------------------------- /PCB files/5030-top-window/Schematic:Layout PDFs/5030-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/5030-top-window/Schematic:Layout PDFs/5030-schematic.pdf -------------------------------------------------------------------------------- /PCB files/pipette-endstop/EAGLE/pipette-endstop.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-endstop/EAGLE/pipette-endstop.brd -------------------------------------------------------------------------------- /PCB files/pipette-endstop/EAGLE/pipette-endstop.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-endstop/EAGLE/pipette-endstop.sch -------------------------------------------------------------------------------- /PCB files/pipette-endstop/Schematic:Layout PDFs/pipette-endstop-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-endstop/Schematic:Layout PDFs/pipette-endstop-layout.pdf -------------------------------------------------------------------------------- /PCB files/pipette-endstop/Schematic:Layout PDFs/pipette-endstop-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-endstop/Schematic:Layout PDFs/pipette-endstop-schematic.pdf -------------------------------------------------------------------------------- /PCB files/pipette-main/EAGLE/pipette-main.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-main/EAGLE/pipette-main.brd -------------------------------------------------------------------------------- /PCB files/pipette-main/EAGLE/pipette-main.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-main/EAGLE/pipette-main.sch -------------------------------------------------------------------------------- /PCB files/pipette-main/Schematic:Layout PDFs/pipette-main-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-main/Schematic:Layout PDFs/pipette-main-layout.pdf -------------------------------------------------------------------------------- /PCB files/pipette-main/Schematic:Layout PDFs/pipette-main-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/PCB files/pipette-main/Schematic:Layout PDFs/pipette-main-schematic.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/README.md -------------------------------------------------------------------------------- /deck/CNC_DECK_RevA2.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/deck/CNC_DECK_RevA2.DXF -------------------------------------------------------------------------------- /reference-model/JPG/OT-2 Reference Model Basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/JPG/OT-2 Reference Model Basic.jpg -------------------------------------------------------------------------------- /reference-model/JPG/OT-2 Reference Model Detailed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/JPG/OT-2 Reference Model Detailed.jpg -------------------------------------------------------------------------------- /reference-model/STEP/OT-2 Reference Model Basic.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/STEP/OT-2 Reference Model Basic.STEP -------------------------------------------------------------------------------- /reference-model/STEP/OT-2 Reference Model Detailed.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/STEP/OT-2 Reference Model Detailed.STEP -------------------------------------------------------------------------------- /reference-model/STL/OT-2 Reference Model Basic.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/STL/OT-2 Reference Model Basic.STL -------------------------------------------------------------------------------- /reference-model/STL/OT-2 Reference Model Detailed.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/reference-model/STL/OT-2 Reference Model Detailed.STL -------------------------------------------------------------------------------- /windows/REAR_WINDOW_RevA.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/windows/REAR_WINDOW_RevA.DXF -------------------------------------------------------------------------------- /windows/SIDE_WINDOW_RevA1.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/windows/SIDE_WINDOW_RevA1.DXF -------------------------------------------------------------------------------- /windows/TOP_WINDOW_RevA2.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/windows/TOP_WINDOW_RevA2.DXF -------------------------------------------------------------------------------- /windows/WINDOW_FRONT-BOTTOM_RevA.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/windows/WINDOW_FRONT-BOTTOM_RevA.DXF -------------------------------------------------------------------------------- /windows/WINDOW_FRONT-TOP_RevA.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Opentrons/ot2/HEAD/windows/WINDOW_FRONT-TOP_RevA.DXF --------------------------------------------------------------------------------