Variable Length Skadis Arm

An openSCAD file to generate variable length Ikea Skadis pegboard hooks
24
153
3
632
updated November 13, 2021

Description

PDF

I took t0b1's skadis arm, and make it variable length. I also have a shell script (below) to generate a variety of lengths, with an option to show the lengths as text on the print, useful for determining which length you use the most. You don't need the shell script, you can edit the openscad file

 

 

Shell script to generate a variety of lengths, prusaprinters doesn't allow upload of shell scripts (Wonder why…) Simply save this as a sh script in the same directory as the skadis-arm.scad

lengths=(30 40 60 80 100)
printLengths=false

for len in ${lengths[@]};
do
echo $len
openscad -o "SkadisArm-$len.stl" -D length=$len -D printLength=$printLengths skadis-arm.scad
done
 

Tags



Model origin

The author remixed this model.

License