Rev 4252 Rev 4260
Line 1... Line 1...
1 DISPLAY_height = 101; 1 DISPLAY_height = 101;
2 DISPLAY_width = 166; 2 DISPLAY_width = 166;
3 DISPLAY_depth = 5.1; 3 DISPLAY_depth = 5.4;
-   4 DISPLAY_visible_height = 91.6;
4 DISPLAY_rim = 5; 5 DISPLAY_visible_width = 158.6;
-   6  
5   7  
6 FP_width = 234; 8 FP_width = 234;
7 FP_height = 125; 9 FP_height = 125;
8 thickness = 2; 10 FP_thickness = 7;
9 clearance = 0.75; 11 clearance = 0.75;
10   12  
-   13 use <./../../../../../Library/Graphics/MLAB_logo.scad>
11   14  
12   15  
13 difference () { 16 difference () {
14   17  
15 difference () { 18 difference () {
16 color("green") 19 color("green")
17 linear_extrude(height = DISPLAY_depth, scale = 0.98) 20 linear_extrude(height = FP_thickness, scale = 0.98)
18 square([FP_width, FP_height], center = true); 21 square([FP_width, FP_height], center = true);
19 22
20 translate([-23,0,0]){ 23 translate([-23,0,DISPLAY_depth/2]){
-   24 translate([(-2.4/2),(4.4/2),0])
21 cube([DISPLAY_width - DISPLAY_rim, DISPLAY_height - DISPLAY_rim, DISPLAY_depth+10], center= true); 25 cube([DISPLAY_visible_width, DISPLAY_visible_height, DISPLAY_depth+10], center= true);
22 cube([DISPLAY_width, DISPLAY_height, DISPLAY_depth], center= true); 26 cube([DISPLAY_width, DISPLAY_height, DISPLAY_depth], center= true);
23 } 27 }
24 28
25 29
26 // Front metal panel mount holes - not mounting of printed pannel 30 // Front metal panel mount holes - not mounting of printed pannel
Line 93... Line 97...
93 cylinder(20, d=3.5, center=true); 97 cylinder(20, d=3.5, center=true);
94 translate([5.5, -52,0]) // bottom right screw. 98 translate([5.5, -52,0]) // bottom right screw.
95 cylinder(20, d=3.5, center=true); 99 cylinder(20, d=3.5, center=true);
96 translate([107.5, -52,0]) // top right screw. 100 translate([107.5, -52,0]) // top right screw.
97 cylinder(20, d=3.5, center=true); 101 cylinder(20, d=3.5, center=true);
-   102  
-   103 // MLAB logo on the side
-   104
-   105 union (){
-   106 translate ([83,30, 6]) // ODROIDs passive components hole.
-   107 scale(v = [0.2, 0.2, 0.2])
-   108 MLAB_logo_short();
-   109 }
-   110
98 } 111 }
99 // translate([100, 0, 0]) // top right screw. // crop left or right half of the panel to fit it in printer 112 // translate([100, 0, 0]) // top right screw. // crop left or right half of the panel to fit it in printer
100 translate([-100, 0, 0]) // top right screw. // crop left or right half of the panel to fit it in printer 113 translate([-100, 0, 0]) // top right screw. // crop left or right half of the panel to fit it in printer
101 cube(200, 200, 20, center=true); 114 cube(200, 200, 20, center=true);
102 } -  
103 115 }
-   116