18 lines
468 B
OpenSCAD
18 lines
468 B
OpenSCAD
// The cutouts to allow external components (such as buttons and connectors) to be mounted on the box
|
|
|
|
// 4056-based li-ion charging module
|
|
module usb_cutout() {
|
|
hull() {
|
|
translate([0, -3, 0]) cylinder(h=11, d=8);
|
|
translate([0, 3, 0]) cylinder(h=11, d=8);
|
|
translate([0, 0, 12]) cube([3, 8.9, 2], true);
|
|
}
|
|
}
|
|
|
|
// 14x12mm rocker switch with 21x15mm flange
|
|
module switch_cutout() {
|
|
cube([14, 12, 11], true); // WIP
|
|
}
|
|
|
|
|
|
//usb_cutout(); |