20 lines
745 B
OpenSCAD
20 lines
745 B
OpenSCAD
// This file contains the enclosure with all the internal components, for a test fit.
|
|
|
|
use <internal_components.scad>
|
|
use <fabula_enclosure.scad>
|
|
|
|
|
|
module test_fit_components() {
|
|
// Internal components
|
|
translate([0, 30, 0]) speaker_80();
|
|
translate([0, 0, 35]) pcb();
|
|
translate([0, -28, 9]) rotate([0, 90, 0]) battery_18650();
|
|
|
|
// Components that require cutout on external shell
|
|
translate([-29, -71.5, 1]) rotate([0, 0, 90]) li_ion_4056_charger_module();
|
|
translate([-5, -92, 10]) rotate([90, 0, 0]) switch();
|
|
}
|
|
|
|
test_fit_components();
|
|
translate([0, 0, 20]) rotate([0, 0, -90]) rotate([180, 0, 0]) #fabula_enclosure_bottom();
|
|
//translate([0, 0, 20]) rotate([0, 0, -90]) rotate([180, 0, 0]) #fabula_enclosure_top(); |