├── .gitignore ├── Cycloid.ipynb ├── README.md ├── axi.fcstd ├── bearingadapter-10mm.fcstd ├── cantilever-3d.fcstd ├── cnchead.fcstd ├── corexy3.fcstd ├── cycloid.fcstd ├── cycloid.py ├── delta.fcstd ├── doc ├── axi-concept.png ├── braindump.md ├── corexy3-concept.png ├── doverail-slim-model.png ├── doverail-slim-square.jpg ├── doverail-slim-test.jpg ├── doverail-wide-model.png ├── flex-joint-concept.png ├── handy-a4-concept.png ├── ibeam-first.jpg ├── lgm-2018 │ ├── README.md │ └── workshop.md ├── ninja-deltahead-1.jpg ├── tapepen-v1.jpg ├── tapexy-first.jpg ├── tapexy-model.png ├── tapexy-second.jpg └── wallframed-3dp-concept.png ├── doverail-slim-slider-adjustable.fcstd ├── doverail-slim.fcstd ├── doverail-wide.fcstd ├── gantry-adjuster.fcstd ├── handy-a4.fcstd ├── ibeam-20.fcstd ├── ibeam-slider.fcstd ├── ibeam2t-motor.fcstd ├── ibeam2t.fcstd ├── idlerwheel-30deg.fcstd ├── iibeam-30.fcstd ├── limitswitch-holder.fcstd ├── m8alt.fcstd ├── nema17-standoff.fcstd ├── nema17.fcstd ├── penheadhack.fcstd ├── penspring.fcstd ├── platexy.fcstd ├── pulley-ninjaflex.fcstd ├── pulley.fcstd ├── pulleysmall.fcstd ├── tape-slide.fcstd ├── tape608ov.fcstd ├── tapecore-3d.fcstd ├── tapecorexy2.fcstd ├── tapecrane.fcstd ├── tapepen.fcstd ├── tapexy-bearing-assembly-x2.fcstd ├── tapexy-bearing-assembly.fcstd ├── tapexy-frame.fcstd ├── tapexy-gantry.fcstd ├── tapexy-head.fcstd ├── tapexy-kapton608.fcstd ├── tapexy-kapton608v.fcstd ├── tapexy.fcstd ├── tapez-bed.fcstd ├── tapez-frame.fcstd ├── tapez.fcstd ├── tolerancetest.fcstd ├── vrail-inner.fcstd ├── vrail.fcstd ├── wallframed-zadjuster.fcstd ├── wallframed.fcstd ├── wallframed2.fcstd └── zservo_post.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.fcstd1 2 | export/* 3 | -------------------------------------------------------------------------------- /Cycloid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/Cycloid.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/README.md -------------------------------------------------------------------------------- /axi.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/axi.fcstd -------------------------------------------------------------------------------- /bearingadapter-10mm.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/bearingadapter-10mm.fcstd -------------------------------------------------------------------------------- /cantilever-3d.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/cantilever-3d.fcstd -------------------------------------------------------------------------------- /cnchead.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/cnchead.fcstd -------------------------------------------------------------------------------- /corexy3.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/corexy3.fcstd -------------------------------------------------------------------------------- /cycloid.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/cycloid.fcstd -------------------------------------------------------------------------------- /cycloid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/cycloid.py -------------------------------------------------------------------------------- /delta.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/delta.fcstd -------------------------------------------------------------------------------- /doc/axi-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/axi-concept.png -------------------------------------------------------------------------------- /doc/braindump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/braindump.md -------------------------------------------------------------------------------- /doc/corexy3-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/corexy3-concept.png -------------------------------------------------------------------------------- /doc/doverail-slim-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/doverail-slim-model.png -------------------------------------------------------------------------------- /doc/doverail-slim-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/doverail-slim-square.jpg -------------------------------------------------------------------------------- /doc/doverail-slim-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/doverail-slim-test.jpg -------------------------------------------------------------------------------- /doc/doverail-wide-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/doverail-wide-model.png -------------------------------------------------------------------------------- /doc/flex-joint-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/flex-joint-concept.png -------------------------------------------------------------------------------- /doc/handy-a4-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/handy-a4-concept.png -------------------------------------------------------------------------------- /doc/ibeam-first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/ibeam-first.jpg -------------------------------------------------------------------------------- /doc/lgm-2018/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/lgm-2018/README.md -------------------------------------------------------------------------------- /doc/lgm-2018/workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/lgm-2018/workshop.md -------------------------------------------------------------------------------- /doc/ninja-deltahead-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/ninja-deltahead-1.jpg -------------------------------------------------------------------------------- /doc/tapepen-v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/tapepen-v1.jpg -------------------------------------------------------------------------------- /doc/tapexy-first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/tapexy-first.jpg -------------------------------------------------------------------------------- /doc/tapexy-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/tapexy-model.png -------------------------------------------------------------------------------- /doc/tapexy-second.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/tapexy-second.jpg -------------------------------------------------------------------------------- /doc/wallframed-3dp-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doc/wallframed-3dp-concept.png -------------------------------------------------------------------------------- /doverail-slim-slider-adjustable.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doverail-slim-slider-adjustable.fcstd -------------------------------------------------------------------------------- /doverail-slim.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doverail-slim.fcstd -------------------------------------------------------------------------------- /doverail-wide.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/doverail-wide.fcstd -------------------------------------------------------------------------------- /gantry-adjuster.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/gantry-adjuster.fcstd -------------------------------------------------------------------------------- /handy-a4.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/handy-a4.fcstd -------------------------------------------------------------------------------- /ibeam-20.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/ibeam-20.fcstd -------------------------------------------------------------------------------- /ibeam-slider.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/ibeam-slider.fcstd -------------------------------------------------------------------------------- /ibeam2t-motor.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/ibeam2t-motor.fcstd -------------------------------------------------------------------------------- /ibeam2t.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/ibeam2t.fcstd -------------------------------------------------------------------------------- /idlerwheel-30deg.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/idlerwheel-30deg.fcstd -------------------------------------------------------------------------------- /iibeam-30.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/iibeam-30.fcstd -------------------------------------------------------------------------------- /limitswitch-holder.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/limitswitch-holder.fcstd -------------------------------------------------------------------------------- /m8alt.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/m8alt.fcstd -------------------------------------------------------------------------------- /nema17-standoff.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/nema17-standoff.fcstd -------------------------------------------------------------------------------- /nema17.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/nema17.fcstd -------------------------------------------------------------------------------- /penheadhack.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/penheadhack.fcstd -------------------------------------------------------------------------------- /penspring.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/penspring.fcstd -------------------------------------------------------------------------------- /platexy.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/platexy.fcstd -------------------------------------------------------------------------------- /pulley-ninjaflex.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/pulley-ninjaflex.fcstd -------------------------------------------------------------------------------- /pulley.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/pulley.fcstd -------------------------------------------------------------------------------- /pulleysmall.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/pulleysmall.fcstd -------------------------------------------------------------------------------- /tape-slide.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tape-slide.fcstd -------------------------------------------------------------------------------- /tape608ov.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tape608ov.fcstd -------------------------------------------------------------------------------- /tapecore-3d.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapecore-3d.fcstd -------------------------------------------------------------------------------- /tapecorexy2.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapecorexy2.fcstd -------------------------------------------------------------------------------- /tapecrane.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapecrane.fcstd -------------------------------------------------------------------------------- /tapepen.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapepen.fcstd -------------------------------------------------------------------------------- /tapexy-bearing-assembly-x2.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-bearing-assembly-x2.fcstd -------------------------------------------------------------------------------- /tapexy-bearing-assembly.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-bearing-assembly.fcstd -------------------------------------------------------------------------------- /tapexy-frame.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-frame.fcstd -------------------------------------------------------------------------------- /tapexy-gantry.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-gantry.fcstd -------------------------------------------------------------------------------- /tapexy-head.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-head.fcstd -------------------------------------------------------------------------------- /tapexy-kapton608.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-kapton608.fcstd -------------------------------------------------------------------------------- /tapexy-kapton608v.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy-kapton608v.fcstd -------------------------------------------------------------------------------- /tapexy.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapexy.fcstd -------------------------------------------------------------------------------- /tapez-bed.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapez-bed.fcstd -------------------------------------------------------------------------------- /tapez-frame.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapez-frame.fcstd -------------------------------------------------------------------------------- /tapez.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tapez.fcstd -------------------------------------------------------------------------------- /tolerancetest.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/tolerancetest.fcstd -------------------------------------------------------------------------------- /vrail-inner.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/vrail-inner.fcstd -------------------------------------------------------------------------------- /vrail.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/vrail.fcstd -------------------------------------------------------------------------------- /wallframed-zadjuster.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/wallframed-zadjuster.fcstd -------------------------------------------------------------------------------- /wallframed.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/wallframed.fcstd -------------------------------------------------------------------------------- /wallframed2.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/wallframed2.fcstd -------------------------------------------------------------------------------- /zservo_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/tapecore/HEAD/zservo_post.py --------------------------------------------------------------------------------