Rev 3966 Rev 3974
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 = 125; 3 x_size = 125;
4 y_size = 74; 4 y_size = 74;
5 mount_hole = 3.5; 5 mount_hole = 3.5;
6 nut_size = 6.8; 6 nut_size = 6.8;
7 clear = 0.175; 7 clear = 0.175;
8 MLAB_grid = 10.16; 8 MLAB_grid = 10.16;
9   9  
10 x_holes = floor((x_size-4) / MLAB_grid); 10 x_holes = floor((x_size-4) / MLAB_grid);
11 y_holes = floor((y_size-3) / MLAB_grid); 11 y_holes = floor((y_size-3) / 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 = (117.6+110)/2; 17 ODROID_holes_xdistance = (117.7+110.5)/2;
18 ODROID_holes_ydistance = (67.4+59.7)/2; 18 ODROID_holes_ydistance = (67.4+59.7)/2;
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 Galileo 23 //mount holes for Galileo
24   24  
25 translate ([ODROID_holes_offset, ODROID_holes_offset,0]) 25 translate ([ODROID_holes_offset, ODROID_holes_offset,0])
26 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6); 26 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6);
27 translate ([ODROID_holes_offset, ODROID_holes_offset, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 27 translate ([ODROID_holes_offset, ODROID_holes_offset, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
28 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 28 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
29   29  
30 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset, 0]) 30 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset, 0])
31 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6); 31 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6);
32 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 32 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
33 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 33 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
34   34  
35 translate ([ODROID_holes_offset, ODROID_holes_offset + ODROID_holes_ydistance,0]) 35 translate ([ODROID_holes_offset, ODROID_holes_offset + ODROID_holes_ydistance,0])
36 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6); 36 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6);
37 translate ([ODROID_holes_offset, ODROID_holes_offset + ODROID_holes_ydistance, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 37 translate ([ODROID_holes_offset, ODROID_holes_offset + ODROID_holes_ydistance, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
38 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 38 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
39   39  
40 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset + ODROID_holes_ydistance,0]) 40 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset + ODROID_holes_ydistance,0])
41 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6); 41 cylinder (h = 6, r= (nut_size+clear)/2, $fn=6);
42 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset + ODROID_holes_ydistance, 6.2]) // one solid layer for slicer (the holes will be pierced on demand ) 42 translate ([ODROID_holes_offset + ODROID_holes_xdistance, ODROID_holes_offset + ODROID_holes_ydistance, 6.2]) // one solid layer for slicer (the holes will be pierced on demand )
43 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 43 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
44   44  
45 ///////////////////////////////////////// 45 /////////////////////////////////////////
46 // holes for components at the bottom side of the PCB. 46 // holes for components at the bottom side of the PCB.
47   47  
48 translate ([10, 2 , pedestal_height - 4]) 48 translate ([10, 2 , pedestal_height - 4])
49 cube([x_size-21, y_size-5, 5]); 49 cube([x_size-21, y_size-5, 5]);
50   50  
51 translate ([5, 10.5, pedestal_height - 4]) 51 translate ([5, 10.5, pedestal_height - 4])
52 cube([x_size-9, y_size-21, 5]); 52 cube([x_size-9, y_size-21, 5]);
53   53  
54 translate ([x_size - 5, 32 , pedestal_height - 4]) 54 translate ([x_size - 5, 32 , pedestal_height - 4]) // Hole for ICSP connector
55 cube([4,11, 5]); 55 cube([4,11, 5]);
56   56  
-   57 translate ([96.5, y_size - 2.5 - 1, pedestal_height - 4]) // hole for capacitor at bottom side of the pcb
-   58 cube([5, 2, 5]);
-   59  
57 //////////////////////////////////////// 60 ////////////////////////////////////////
58   61  
59 // MLAB grid holes 62 // MLAB grid holes
60 grid_list = [for (j = [MLAB_grid_xoffset : MLAB_grid: x_size], i = [MLAB_grid_yoffset :MLAB_grid: y_size]) 63 grid_list = [for (j = [MLAB_grid_xoffset : MLAB_grid: x_size], i = [MLAB_grid_yoffset :MLAB_grid: y_size])
61 if (!(j>(x_size-10) && i>(y_size-10)) && !(j<10 && i<10) && !(j<10 && i>(y_size-10)) && !(j>(x_size-10) && i<10) ) [j, i] ]; 64 if (!(j>(x_size-10) && i>(y_size-10)) && !(j<10 && i<10) && !(j<10 && i>(y_size-10)) && !(j>(x_size-10) && i<10) ) [j, i] ];
62 for (j = grid_list) { 65 for (j = grid_list) {
63 translate (concat(j, [0])) 66 translate (concat(j, [0]))
64 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6); 67 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
65 translate (concat(j, [3.2])) // one solid layer for slicer (the holes will be pierced on demand ) 68 translate (concat(j, [3.2])) // one solid layer for slicer (the holes will be pierced on demand )
66 cylinder (h = pedestal_height /3, r= mount_hole/2, $fn=10); 69 cylinder (h = pedestal_height /3, r= mount_hole/2, $fn=10);
67 translate (concat(j, [6.0])) 70 translate (concat(j, [6.0]))
68 cylinder (h = 10, r= nut_size/2, $fn=6); 71 cylinder (h = 10, r= nut_size/2, $fn=6);
69 } 72 }
70 73
71 74
72 //// lightening central holes 75 //// lightening central holes
73 76
74 translate ([33,3, 0]) 77 translate ([33,3, 0])
75 cube([49,y_size -3 -3,pedestal_height ]); 78 cube([49,y_size -3 -3,pedestal_height ]);
76   79  
77 translate ([11,10, 0]) 80 translate ([12,11, 0])
78 cube([x_size-22,y_size-20,pedestal_height ]); 81 cube([x_size-24,y_size-22,pedestal_height ]);
79 } 82 }
80   83