26 lines
1.1 KiB
Bash
26 lines
1.1 KiB
Bash
# settings for Elegoo 3d printer, Siraya Tech Tenacious Flexible Resin (Shore 65D):
|
|
# - <https://siraya.tech/products/tenacious-resin-flexible-resin>
|
|
# runs/data
|
|
# - defaults: print had entire walls, failed. e.g. volume box had no top.
|
|
# - defaults, ACF film: print succeeded, but some walls caved in during print.
|
|
# - Siraya recommended settings, ACF film: print succeeded, but some walls caved in during print.
|
|
# exposure=3, lift-distance=3, retract-speed=240, lift-speed=45
|
|
# - exposure=5, lift-distance=5, retract-speed=150: excellent print
|
|
#
|
|
# other resins:
|
|
# - Elegoo Standard Resin: prints excellent with default settings; zero flexibility, and BRITTLE.
|
|
# - SUNLU High Toughness Resin: prints excellent with default settings on ACF film; not flexible enough to accomodate the phone.
|
|
# N.B. we rotate the model 90-degrees when slicing else it doesn't fit within print bounds.
|
|
MSLICER_FLAGS=(\
|
|
--rotation 0,0,90 \
|
|
--exposure-time 5 \
|
|
--first-layers 5 \
|
|
--transition-layers 5 \
|
|
--lift-distance 5 \
|
|
--lift-speed 45 \
|
|
--retract-speed 150 \
|
|
--first-lift-distance 5 \
|
|
--first-lift-speed 45 \
|
|
--first-retract-speed 150
|
|
)
|