#!/bin/sh #echo --temperature 210 #echo --first-layer-temperature 220 if [ "$material" = "pla" ]; then TEMP1=205 TEMP2=70 echo --temperature=$TEMP1 echo --first-layer-temperature=$TEMP1 echo --bed-temperature=$TEMP2 echo --first-layer-bed-temperature=$TEMP2 elif [ "$material" = "abs" ] ; then TEMP1=225 TEMP2=100 echo --temperature=$TEMP1 echo --first-layer-temperature=$TEMP1 echo --bed-temperature=$TEMP2 echo --first-layer-bed-temperature=$TEMP2 fi echo --filament-diameter=1.5 echo --nozzle-diameter=0.5 echo --first-layer-height=0.35 echo --layer-height=0.3 echo --travel-speed=80 #echo --disable-fan-first-layers 1000