├── .gitattributes ├── LICENSE ├── README.md ├── mechanics ├── source │ └── pc2_final_asm.stp └── stl │ ├── nema14_spacer.stl │ ├── pc2_arm_block.stl │ ├── pc2_base.stl │ ├── pc2_carriage.stl │ ├── pc2_drive_gear.stl │ ├── pc2_gear_bed.stl │ ├── pc2_pen_cam.stl │ ├── pc2_pen_carriage.stl │ └── pc2_rod_cap.stl ├── pcb ├── gerber │ ├── BoardOutline.gbr │ ├── Bottom.gbr │ ├── BottomMask.gbr │ ├── BottomSilk.gbr │ ├── Top.gbr │ ├── TopMask.gbr │ ├── TopPaste.gbr │ ├── TopSilk.gbr │ └── drill.drl ├── schematic.pdf └── source │ ├── PolarCoaster_V1.dip │ └── polarcoaster_v1.dch └── sample_gcode ├── 1.NC └── 2.NC /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/README.md -------------------------------------------------------------------------------- /mechanics/source/pc2_final_asm.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/source/pc2_final_asm.stp -------------------------------------------------------------------------------- /mechanics/stl/nema14_spacer.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/nema14_spacer.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_arm_block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_arm_block.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_base.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_carriage.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_carriage.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_drive_gear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_drive_gear.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_gear_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_gear_bed.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_pen_cam.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_pen_cam.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_pen_carriage.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_pen_carriage.stl -------------------------------------------------------------------------------- /mechanics/stl/pc2_rod_cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/mechanics/stl/pc2_rod_cap.stl -------------------------------------------------------------------------------- /pcb/gerber/BoardOutline.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/BoardOutline.gbr -------------------------------------------------------------------------------- /pcb/gerber/Bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/Bottom.gbr -------------------------------------------------------------------------------- /pcb/gerber/BottomMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/BottomMask.gbr -------------------------------------------------------------------------------- /pcb/gerber/BottomSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/BottomSilk.gbr -------------------------------------------------------------------------------- /pcb/gerber/Top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/Top.gbr -------------------------------------------------------------------------------- /pcb/gerber/TopMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/TopMask.gbr -------------------------------------------------------------------------------- /pcb/gerber/TopPaste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/TopPaste.gbr -------------------------------------------------------------------------------- /pcb/gerber/TopSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/TopSilk.gbr -------------------------------------------------------------------------------- /pcb/gerber/drill.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/gerber/drill.drl -------------------------------------------------------------------------------- /pcb/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/schematic.pdf -------------------------------------------------------------------------------- /pcb/source/PolarCoaster_V1.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/source/PolarCoaster_V1.dip -------------------------------------------------------------------------------- /pcb/source/polarcoaster_v1.dch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/pcb/source/polarcoaster_v1.dch -------------------------------------------------------------------------------- /sample_gcode/1.NC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/sample_gcode/1.NC -------------------------------------------------------------------------------- /sample_gcode/2.NC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/Polar-Coaster/HEAD/sample_gcode/2.NC --------------------------------------------------------------------------------