Created
May 19, 2020 23:40
-
-
Save beigna/c40a7e38f16b2a3f73655d6090dab787 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$altura = 11; | |
$c = 90; | |
difference() { | |
difference() { | |
cube([354, 253, $altura]); | |
translate([5, 5, 3]) | |
cube([344, 223, 8]); | |
}; | |
// Hueco para ver la pantalla | |
translate([10.75, 11.5, 0]) | |
cube([332.5, 210, 3]); | |
// Recorte bordes inferiores | |
translate([0, 233]) | |
cube([127, 20, $altura]); | |
translate([227, 233]) | |
cube([127, 20, $altura]); | |
// Soporte para PCB Control remoto | |
difference() { | |
translate([132,228,2]) | |
cube([85, 22, 9]); | |
translate([147,244,2]) | |
difference() { | |
cylinder(h=5.5, r1=4, r2=2.5,$fn=$c); | |
cylinder(h=5.5, r=1.25,$fn=$c); | |
}; | |
translate([192,244,2]) | |
difference() { | |
cylinder(h=5.5, r1=4, r2=2.5,$fn=$c); | |
cylinder(h=5.5, r=1.25,$fn=$c); | |
}; | |
}; | |
// Orificios para Control remoto | |
translate([138,244,0]) | |
cylinder(h=2, r=1.5, $fn=$c); | |
translate([156,244,0]) | |
cylinder(h=2, r=1.5, $fn=$c); | |
translate([169,244,0]) | |
cylinder(h=2, r=1.5, $fn=$c); | |
translate([185,244,0]) | |
cylinder(h=2, r=1.5, $fn=$c); | |
translate([203.5,244,0]) | |
cylinder(h=2, r=1.5, $fn=$c); | |
translate([212,237,0]) | |
cylinder(h=2, r1=4, r2=2.5, $fn=$c); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment