https://github.com/revarbat/snappy-reprap
The world's most 3D printable 3D printer. (Guinness Book of World Records 2017 & 2018)
https://github.com/revarbat/snappy-reprap
3d-printer 3d-printing openscad reprap snappy-3d-printer stl-files
Last synced: 2 months ago
JSON representation
The world's most 3D printable 3D printer. (Guinness Book of World Records 2017 & 2018)
- Host: GitHub
- URL: https://github.com/revarbat/snappy-reprap
- Owner: revarbat
- License: gpl-2.0
- Created: 2014-08-29T06:39:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-11-19T15:51:45.000Z (over 4 years ago)
- Last Synced: 2024-07-31T22:45:47.045Z (10 months ago)
- Topics: 3d-printer, 3d-printing, openscad, reprap, snappy-3d-printer, stl-files
- Language: OpenSCAD
- Homepage: http://revarbat.github.io/snappy-reprap
- Size: 154 MB
- Stars: 499
- Watchers: 81
- Forks: 172
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

Snappy-Reprap 3
===============A parametric design for a cheap self-replicating 3D printer (reprap) that snaps together to minimize screws and non-printed parts.
Important Links:
What | URL
-------------------- | -------------------------------------------------------
GitHub Repository | https://github.com/revarbat/snappy-reprap
Project Wiki | https://github.com/revarbat/snappy-reprap/wiki/v3.0-Home
Bill of Materials | https://github.com/revarbat/snappy-reprap/wiki/v3.0-BOM
How to Assemble | https://github.com/revarbat/snappy-reprap/wiki/v3.0-Assembly
RepRap.org Wiki Page | http://reprap.org/wiki/Snappy
Dev Forum | https://groups.google.com/forum/#!forum/snappy-reprap-dev[](https://gitter.im/revarbat/snappy-reprap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Generating STL Files
====================
For all platforms, you will need to have OpenSCAD installed. You can download OpenSCAD from their website at [http://www.openscad.org](http://www.openscad.org)To insure the best fit of parts, print the [slop calibrator STL file](https://github.com/revarbat/snappy-reprap/blob/master/STLs/slop_calibrator_parts.stl) on the parent printer using the desired print settings. Then update the printer_slop variable in the config.scad file on line 130. Then proceed to generating STL files.
OS X:
-----
Under OS X, you'll need to make sure you have the Xcode command-line tools installed first. You can get them by installing Xcode from the App Store.You shouldn't need to change the Makefile. It should set $OPENSCAD as:
```
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
```To generate the STL model files, open a terminal to the snappy-reprap directory and type:
```
make
```Linux:
------
Under Linux, you will need to edit the Makefile, and change $OPENSCAD to:
```
OPENSCAD=openscad
```
To generate the STL model files, open a terminal to the snappy-reprap directory and type:
```
make
```Windows:
--------
Under Windows, you'll probably have to open and compile each `*_parts.scad` file individually and manually export the STL files.You _might_ be able to run the makefile under CygWin, if you set $OPENSCAD to something like:
```
OPENSCAD="/Program Files/OpenSCAD/openscad.exe"
```