├── .gitignore ├── README.md ├── agpl-3.0.txt ├── config.js ├── fdmextruder.def.json ├── fdmprinter.def.json ├── i ├── activity.gif ├── bedlevel.data ├── bedlevel.html ├── bootstrap-theme.min.css ├── bootstrap.min.css ├── bootstrap.min.js ├── dashboard.css ├── index.html ├── jquery.min.js ├── jsc3d │ ├── jsc3d.js │ ├── jsc3d.touch.js │ └── jsc3d.webgl.js ├── main.js └── screen.css ├── orig_fdmprinter.def.json ├── package.json ├── presets ├── rrw_timelapse.sh ├── runSl.sh ├── server.js ├── slBaseOpts.js ├── workingStl.gcode └── workingStl.stl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/README.md -------------------------------------------------------------------------------- /agpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/agpl-3.0.txt -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/config.js -------------------------------------------------------------------------------- /fdmextruder.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/fdmextruder.def.json -------------------------------------------------------------------------------- /fdmprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/fdmprinter.def.json -------------------------------------------------------------------------------- /i/activity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/activity.gif -------------------------------------------------------------------------------- /i/bedlevel.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/bedlevel.data -------------------------------------------------------------------------------- /i/bedlevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/bedlevel.html -------------------------------------------------------------------------------- /i/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/bootstrap-theme.min.css -------------------------------------------------------------------------------- /i/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/bootstrap.min.css -------------------------------------------------------------------------------- /i/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/bootstrap.min.js -------------------------------------------------------------------------------- /i/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/dashboard.css -------------------------------------------------------------------------------- /i/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/index.html -------------------------------------------------------------------------------- /i/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/jquery.min.js -------------------------------------------------------------------------------- /i/jsc3d/jsc3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/jsc3d/jsc3d.js -------------------------------------------------------------------------------- /i/jsc3d/jsc3d.touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/jsc3d/jsc3d.touch.js -------------------------------------------------------------------------------- /i/jsc3d/jsc3d.webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/jsc3d/jsc3d.webgl.js -------------------------------------------------------------------------------- /i/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/main.js -------------------------------------------------------------------------------- /i/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/i/screen.css -------------------------------------------------------------------------------- /orig_fdmprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/orig_fdmprinter.def.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/package.json -------------------------------------------------------------------------------- /presets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/presets -------------------------------------------------------------------------------- /rrw_timelapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/rrw_timelapse.sh -------------------------------------------------------------------------------- /runSl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/runSl.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/server.js -------------------------------------------------------------------------------- /slBaseOpts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/slBaseOpts.js -------------------------------------------------------------------------------- /workingStl.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/workingStl.gcode -------------------------------------------------------------------------------- /workingStl.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewhodel/reprapweb/HEAD/workingStl.stl --------------------------------------------------------------------------------