                   .:                     :,                                          
,:::::::: ::`      :::                   :::                                          
,:::::::: ::`      :::                   :::                                          
.,,:::,,, ::`.:,   ... .. .:,     .:. ..`... ..`   ..   .:,    .. ::  .::,     .:,`   
   ,::    :::::::  ::, :::::::  `:::::::.,:: :::  ::: .::::::  ::::: ::::::  .::::::  
   ,::    :::::::: ::, :::::::: ::::::::.,:: :::  ::: :::,:::, ::::: ::::::, :::::::: 
   ,::    :::  ::: ::, :::  :::`::.  :::.,::  ::,`::`:::   ::: :::  `::,`   :::   ::: 
   ,::    ::.  ::: ::, ::`  :::.::    ::.,::  :::::: ::::::::: ::`   :::::: ::::::::: 
   ,::    ::.  ::: ::, ::`  :::.::    ::.,::  .::::: ::::::::: ::`    ::::::::::::::: 
   ,::    ::.  ::: ::, ::`  ::: ::: `:::.,::   ::::  :::`  ,,, ::`  .::  :::.::.  ,,, 
   ,::    ::.  ::: ::, ::`  ::: ::::::::.,::   ::::   :::::::` ::`   ::::::: :::::::. 
   ,::    ::.  ::: ::, ::`  :::  :::::::`,::    ::.    :::::`  ::`   ::::::   :::::.  
                                ::,  ,::                               ``             
                                ::::::::                                              
                                 ::::::                                               
                                  `,,`


https://www.thingiverse.com/thing:2474114
Mini Tripods meets Smartphone tripod version 2 by foxos is licensed under the Creative Commons - Attribution - Non-Commercial license.
http://creativecommons.org/licenses/by-nc/3.0/

# Summary

Just a quick hack to mount my Handy(Smartphone). But may be it's also handy for you. ;)
I added all details so you can tweak gaps if needed.

Ballhead_v1-0_FlashHat.STL, HolderTop.stl and Screw.stl are not modified. For the sake of completeness I copied them.

Remixed Part: FlashHat-HolderBottom.stl
White Parts: https://www.thingiverse.com/thing:1165406
Red Parts: https://www.thingiverse.com/thing:1735963

# Print Settings

Printer Brand: Prusa
Printer: Prusa Mk2
Rafts: Doesn't Matter
Supports: Yes
Resolution: 0.15mm(Vertical), 0.4mm(Horizontal)
Infill: 25%

Notes: 
* I used PLA for all parts.
* Support only for the remixed part. (FlashHat-HolderBottom.stl)

# How I Designed This

## OpenSCAD

```
$fn=30;

main();

module main(){
    slider();
    difference(){
        holder();
        cut();
    }

}

module slider(){
    //body
    translate([0,0,2.5]){
        cube([12,20,2],center=true);
    }
    cube([16,20,3],center=true);
    translate([0,0,3/4]){
        cube([19,20,3/2],center=true);
    }
    //rounded corners
    for(i=[1,-1]){
        rotate([90,0,0]){
            translate([(19/2-1.5)*i,0,0]){
                cylinder(h=20,r=1.5,center=true);
            }
        }
    }
}

module holder(){
    translate([-8,-2,16]){
        import("HolderBottom.stl", convexity=3);
    }
}

module cut(){
    translate([0,0,-20/2-3/2]){
        cube([20,20,20],center=true);
    }
}
```