I had a camera ceiling mount snap from being over tightened. I tried epoxy but that didn’t work…..
I had used a thread library before to make pipe fittings so I thought I’d give it a try. I just measured the threads and whats left of the collar.
I decided to make it a bit larger to make it easier to grip. But then again that’s what started this problem…..
Not bad.
Since I already replaced the mount I may remove the stalk and use it as a ceiling hugger for a new install…..
//**************************************************************** //* Name : Camera Mount Top * //* Author : Robert Joseph Korn * //* Notice : Copyright (c) 2016 Open Valley Consulting Corp * //* : All Rights Reserved * //* Date : 3/5/16 * //* Version : 1.0 * //* Notes : * //**************************************************************** include <polyScrewThread.scad> difference(){ cylinder(d=26, h=15, $fn=20, center=true); union () { translate([0,0,-3])screw_thread(18,1.5,55,20,PI/2,2); cylinder(d=14, h=100, center=true); } }