Thought to make a threaded pin (M10x 10-12mm) with a hole to be placed on a box.For this threaded pin, I also thought to make a thin nut (4-5mm thick). (my idea - a cable should go into the middle of the threaded rod and come out on the side between the top and nut. (an example - but without thread is at the end of the email.)
A thorough description of how threads can be built
Generating Nice Threads In OpenSCAD | Hackaday.io
|
|
|
| | |
|
|
|
| |
Generating Nice Threads In OpenSCAD | Hackaday.io
[Hello future reader. This article refers to OpenSCAD 2018.05.05, please check if it still applies later on] 3D...
|
|
|
New approach to screw threads in OpenSCAD
|
|
|
| | |
|
|
|
| |
New approach to screw threads in OpenSCAD
This is an intellectual exercise with a practical end-result. There are better approaches to this problem, but t...
|
|
|
and an example
Nuts&Bolt baby dexterity toy by Amatulic
|
|
|
| | |
|
|
|
| |
Nuts&Bolt baby dexterity toy by Amatulic
Ever since I became a father, I wanted to make this nut and bolt toy for my child that encourages hand-eye coord...
|
|
|
If I find an exciting proposal, a number of .scad files are needed. and there are problems finding these and I do not know if the file I found is the right one. Most examples also have a skull or thick nut or ...
An example - but do not know how it can be reduced to M10 (and adapted to a nut).vv gxg
Yet another thread library for OpenSCAD
|
|
|
| | |
|
|
|
| |
Yet another thread library for OpenSCAD
This is yet another OpenSCAD thread library, and it was more fun to write it than to find a library that did exa...
|
|
|
OpenSCAD, importing files, Threads, some more coolness. - YouTube
|
|
|
| | |
|
|
|
| |
OpenSCAD, importing files, Threads, some more coolness.
|
|
|
At first I had thought to create a "pipe bend" as on Youtube above, but had not thought that the hole would need to be larger than 10 mm (the cable is 4.5 mm, which should go through the hole)
Wrote a script to show my wish (the yellow cylinders are upcoming holes) The gray bushing lacks external thread.
$fn = 50;diam = 3; // ytter diam - stödkransen
diam1 = 3.5; // stödkransen - tjocklek
mountingHole1(20, 36, 0, 7, 90.1, 5); // posX, posY, posZ, diam, dist, deep, $fn=50
// color("blue", 0.3)// translate([65,36,1])// circle(d=10);
---================//====== mountinghole11
---=========================module mountingHole1(posX=0, posY=0, posZ=0, diam=7, dist=90, deep=5, $fn=50){ // diam = 6; // [mm] // dist = 90; // [mm] // deep = 12; // [mm]
translate([posX, posY, posZ]) { cylinder(h=deep, d=diam); // fästhål 1 cableHold1(dist/2, 0, .2, "#D5D5D5"); // Kabelgenomföring translate([dist/2, 0, 0]) { hull() { cylinder(h=5, d=6); // fästhål 1 sphere(d=6); } } translate([dist, 0, 0]) cylinder(h=deep, d=diam); // fästhål 2 }}//======== Slut mountinghole1
---=========================
---================//====== cablehold1
---=============================module cableHold1(posX=0, posY=0, posZ=0, colorName="orange"){ diam = 3; // ytter diam - stödkransen diam1 = 3.5; // stödkransen - tjocklek color(colorName) { translate([posX, posY, posZ]) { rotate([180, 0, -110]) { union() { difference() { hull() { translate([0, 0, 0]) cylinder(h=1, d=9.5, $fn=50); translate([0, 0, 9]) rotate_extrude(convexity = 10, $fn=50) translate([diam, 0, 0]) circle(d=diam1, $fn=50); } union() { h1 = 6.5; // Hålet rakt upp i toppen color("cyan") hull() { translate([0, 0, -0.2]) cylinder(h=h1, d1=5.5, d2=5, $fn=50); translate([0, 0, h1]) sphere(d=5); } h2=6.5; hull() { translate([0, 0, h2]) rotate([90, 0, 0]) cylinder(h=5, d1=5, d2=5.5, $fn=50); translate([0, 0, h2]) sphere(d=5); } translate([0, 0.1, 3.5]) rotate([45, 0, 0]) cylinder(h=4.5, d1=5, d2=5, $fn=50); translate([0, 0.1, 4.3]) rotate([60, 0, 0]) cylinder(h=4.5, d1=5, d2=5, $fn=50); translate([0, -3.7, 7.2]) rotate([120, 0, 0]) cylinder(h=4, d1=5, d2=5.5, $fn=50); } } } } } }}//======== Slut cableHold1
---=========================
If I find an exciting proposal, a number of .scad files are needed. and there are problems finding these and I do not know if the file I found is the right one.
____________________________________________________-