3836 |
kaklik |
1 |
|
|
|
2 |
pedestal_height = 12.39; |
|
|
3 |
mount_hole = 3.2; |
|
|
4 |
clear = 0.175; |
|
|
5 |
|
|
|
6 |
difference () { |
|
|
7 |
cube([48,83,pedestal_height]); |
|
|
8 |
|
|
|
9 |
//mount holes |
|
|
10 |
translate ([3.5,3.5,5]) |
|
|
11 |
cylinder (h = pedestal_height + clear,r= mount_hole/2, $fn=10); |
|
|
12 |
translate ([3.5,3.5,0]) |
|
|
13 |
cylinder (h = 5 + clear,r= 5.8/2, $fn=6); |
|
|
14 |
|
|
|
15 |
translate ([3.5+41,3.5,0]) |
|
|
16 |
cylinder (h = pedestal_height + clear,r= mount_hole/2, $fn=10); |
|
|
17 |
translate ([3.5+41,3.5,0]) |
|
|
18 |
cylinder (h = 5 + clear,r= 5.8/2, $fn=6); |
|
|
19 |
|
|
|
20 |
|
|
|
21 |
translate ([3.5,3.5+76,0]) |
|
|
22 |
cylinder (h = pedestal_height + clear,r= mount_hole/2, $fn=10); |
|
|
23 |
translate ([3.5,3.5+76,0]) |
|
|
24 |
cylinder (h = 3 + clear,r= 5.8/2, $fn=6); |
|
|
25 |
|
|
|
26 |
|
|
|
27 |
translate ([3.5+41,3.5+76,0]) |
|
|
28 |
cylinder (h = pedestal_height + clear,r= mount_hole/2, $fn=10); |
|
|
29 |
translate ([3.5+41,3.5+76,0]) |
|
|
30 |
cylinder (h = 3 + clear,r= 5.8/2, $fn=6); |
|
|
31 |
|
|
|
32 |
|
|
|
33 |
// holes |
|
|
34 |
translate ([6,0, pedestal_height - 6]) // ODROID connectors |
|
|
35 |
cube([35,6,6.5]); |
|
|
36 |
|
|
|
37 |
// translate ([0,0, pedestal_height - 8]) // Hole for PCB |
|
|
38 |
// cube([48,9.1,2]); |
|
|
39 |
|
|
|
40 |
translate ([0,0, pedestal_height - 8]) // Hole for PCB |
|
|
41 |
cube([48,9.1,20]); |
|
|
42 |
|
|
|
43 |
translate ([1,9, pedestal_height - 3]) |
|
|
44 |
cube([46,36,5]); |
|
|
45 |
|
|
|
46 |
translate ([30,9, pedestal_height - 4]) |
|
|
47 |
cube([30,35,5]); |
|
|
48 |
|
|
|
49 |
translate ([30,37, pedestal_height - 4.5]) // HOLE for jack connector |
|
|
50 |
cube([30,7,5]); |
|
|
51 |
|
|
|
52 |
translate ([3,50, pedestal_height - 3]) |
|
|
53 |
cube([42,27,5]); |
|
|
54 |
|
|
|
55 |
|
|
|
56 |
} |