-rw-r--r-- | multiswitch-metal.scad | 4 | ||||
-rw-r--r-- | pushfit_data.scad | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/multiswitch-metal.scad b/multiswitch-metal.scad new file mode 100644 index 0000000..f736842 --- a/dev/null +++ b/multiswitch-metal.scad @@ -0,0 +1,4 @@ +use <multiswitch.scad>; +include <pushfit_data.scad>; + +multiswitch(pf=pushfit_metal,inputs=inputs,debug=0); diff --git a/pushfit_data.scad b/pushfit_data.scad index c385088..3e9ea02 100644 --- a/pushfit_data.scad +++ b/pushfit_data.scad @@ -1,24 +1,31 @@ +pushfit_metal = [ ["type", "embeddest"], + ["d", 7], // outer diameter + ["id", 5.6], // inner diameter, the narrow passage + ["h", 6.8], // total height + ["h_legspace", 4], // the height of legspace + ["ch", 1] // inlet chamfer +]; pushfit_embeddest = [ ["type", "embeddest"], ["d", 8], // outer diameter of legspace ["id", 6], // inner diameter, the narrow passage ["h", 7], // total height ["h_legspace", 3.2], // the height of legspace ["ch", 1] // inlet chamfer ]; pushfit_embedded = [ ["type", "embedded"], ["d", 12], // outer diameter ["h", 7 ], // total height ["h_ring", 4.7], // height of embedded pushfit ring ["d_insert", 8], // diameter of pushfit insert legs hole ]; pushfit_threaded = [ ["type", "threaded"], ["h", 10], // total height ["d", 25.4*3/8 ], // the diameter to return ["d_tolerance", 0.5], // the diameter tolerance ["tpi", 28] // threads per inch ]; stock_pushfits = [ ["threaded", pushfit_threaded], ["embedded", pushfit_embedded], ["embeddest", pushfit_embeddest] |