a simple micro switch model

pull/9/head
Glen Chung 2013-10-15 00:03:15 +08:00
parent 8eac50eda2
commit 1f7727ba13
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
module micro_switch() {
difference() {
cube([19.8, 10.8, 6.4]);
translate([5.15, 2, 0]) {
translate([0, 0, -0.5])
cylinder(h = 7.4, R=2.6, $fn=100);
translate([9.5, 0, -0.5])
cylinder(h = 7.4, R=2.0, $fn=100);
}
}
translate([2.8, 10.8, 1.2])
rotate([0,0,10])
cube([17,1,4]);
}
micro_switch();