zwave-2002-lock/scad/button_middle.scad
2018-02-15 16:24:51 +01:00

12 lines
240 B
OpenSCAD

button_b = 6;
button_t = 4.5;
module trigger_button_small (){
translate([0,0,0])cylinder(r=button_b/2, h=1, center=true, $fn=100);
translate([0,0,(15+1)/2])cylinder(r=button_t/2, h=15, center=true, $fn=100);
}
trigger_button_small();