Rev 3908 Rev 3918
1   1  
2 pedestal_height = 13; // designed for use the MLAB standard 12mm screws. 2 pedestal_height = 13; // designed for use the MLAB standard 12mm screws.
3 x_size = 87; 3 x_size = 87;
4 y_size = 58; 4 y_size = 58;
5 mount_hole = 3.5; 5 mount_hole = 3.5;
6 nut_size = 6.8; 6 nut_size = 6.8;
7 nut_size25 = 5.7; 7 nut_size25 = 5.7;
8 MLAB_grid = 10.16; 8 MLAB_grid = 10.16;
9   9  
10 x_holes = floor(x_size / MLAB_grid); 10 x_holes = floor(x_size / MLAB_grid);
11 y_holes = floor(y_size / MLAB_grid); 11 y_holes = floor(y_size / MLAB_grid);
12   12  
13 MLAB_grid_xoffset = (x_size - (x_holes * MLAB_grid))/2; 13 MLAB_grid_xoffset = (x_size - (x_holes * MLAB_grid))/2;
14 MLAB_grid_yoffset = (y_size - (y_holes * MLAB_grid))/2; 14 MLAB_grid_yoffset = (y_size - (y_holes * MLAB_grid))/2;
15   15  
16 ODROID_holes_offset = 5.25; 16 ODROID_holes_offset = 5.25;
17 ODROID_holes_xdistance = 86; 17 ODROID_holes_xdistance = 86;
18 ODROID_holes_ydistance = 82; 18 ODROID_holes_ydistance = 82;
19   19  
20 difference () { 20 difference () {
21 cube([x_size, y_size ,pedestal_height]); // base plastics brick 21 cube([x_size, y_size ,pedestal_height]); // base plastics brick
22   22  
23 //mount holes for Raspberry Pi model A/B 23 //mount holes for Raspberry Pi model A/B
24   24  
25 translate ([26.5, 19, 0]) 25 translate ([26.5, 19, 0])
26 cylinder (h = 6, r= nut_size25/2, $fn=6); 26 cylinder (h = 6, r= nut_size25/2, $fn=6);
27 translate ([26.5, 19, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 27 translate ([26.5, 19, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
28 cylinder (h = pedestal_height, r= 2.9/2, $fn=30); 28 cylinder (h = pedestal_height, r= 2.9/2, $fn=30);
29   29  
30 translate ([81, 44.5, 0]) 30 translate ([81, 44.5, 0])
31 cylinder (h = 6, r= nut_size25/2, $fn=6); 31 cylinder (h = 6, r= nut_size25/2, $fn=6);
32 translate ([81, 44.5, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 32 translate ([81, 44.5, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
33 cylinder (h = pedestal_height, r= 2.9/2, $fn=30); 33 cylinder (h = pedestal_height, r= 2.9/2, $fn=30);
34   34  
35 //////////////////////////////////////// 35 ////////////////////////////////////////
36   36  
37 // MLAB grid holes 37 // MLAB grid holes
38 grid_list = [for (j = [MLAB_grid_xoffset : MLAB_grid: 86], i = [MLAB_grid_yoffset :MLAB_grid: 55]) 38 grid_list = [for (j = [MLAB_grid_xoffset : MLAB_grid: 86], i = [MLAB_grid_yoffset :MLAB_grid: 55])
39 if (!(j>20 && i>10 && j<50 && i<50) && !(j>75 && i>40 && j<90 && i<50) ) // exception for Raspberry mount holes 39 if (!(j>20 && i>10 && j<50 && i<50) && !(j>75 && i>40 && j<90 && i<50) ) // exception for Raspberry mount holes
40 [j, i] ]; 40 [j, i] ];
41 41
42 for (j = grid_list) { 42 for (j = grid_list) {
43 translate (concat(j, [0])) 43 translate (concat(j, [0]))
44 cylinder (h = 3, r= nut_size/2, $fn=6); 44 cylinder (h = 3, r= nut_size/2, $fn=6);
45 translate (concat(j, [3.2])) // one solid layer for slicer (the holes will be pierced on demand ) 45 translate (concat(j, [3.2])) // one solid layer for slicer (the holes will be pierced on demand )
46 cylinder (h = pedestal_height /3, r= mount_hole/2, $fn=30); 46 cylinder (h = pedestal_height /3, r= mount_hole/2, $fn=30);
47 translate (concat(j, [6.0])) 47 translate (concat(j, [6.0]))
48 cylinder (h = 10, r= nut_size/2, $fn=6); 48 cylinder (h = 10, r= nut_size/2, $fn=6);
49 } 49 }
50 50
51 ///////////////////////////////////////// 51 /////////////////////////////////////////
52 // holes for components at the bottom side of the PCB. 52 // holes for components at the bottom side of the PCB.
53   53  
54 difference () { 54 difference () {
55 translate ([2, 2 , pedestal_height - 3]) // 55 translate ([2, 2 , pedestal_height - 3]) //
56 cube([83, 54, 3]); 56 cube([83, 54, 3]);
57 57
58 translate ([26.5, 19, pedestal_height - 5]) // Raspberry screw mount pile 58 translate ([26.5, 19, pedestal_height - 5]) // Raspberry screw mount pile
59 cylinder (h = pedestal_height, r= 4, $fn=20); 59 cylinder (h = pedestal_height, r= 4, $fn=20);
60   60  
61 translate ([77, 40.5, pedestal_height - 5]) // Raspberry screw mount brick 61 translate ([77, 40.5, pedestal_height - 5]) // Raspberry screw mount brick
62 cube([20,8,5]); 62 cube([20,8,5]);
63 } 63 }
64 translate ([0, 14 , pedestal_height - 4]) // SD Card 64 translate ([0, 14 , pedestal_height - 4]) // SD Card
65 cube([20,30.5,5]); 65 cube([20,30.5,5]);
66   66  
67 //// lightening central holes 67 //// lightening central holes
68 68
69 translate ([8, 8, 0]) 69 translate ([8, 8, 0])
70 cube([14.5,y_size - 16,pedestal_height ]); 70 cube([14.5,y_size - 16,pedestal_height ]);
71   71  
72 translate ([30.5,8, 0]) 72 translate ([30.5,8, 0])
73 cube([47, y_size - 16,pedestal_height ]); 73 cube([47, y_size - 16,pedestal_height ]);
74 } 74 }
75   75  
76   76