Components placement test

This commit is contained in:
2026-01-02 17:33:43 +01:00
parent 2cf6772feb
commit 9d6b8f6ddb
2 changed files with 26 additions and 3 deletions

15
enclosure/test_fit.scad Normal file
View File

@@ -0,0 +1,15 @@
// 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() {
translate([0, 35, 0]) speaker_80();
translate([0, -60, 0]) rotate([0, 0, 0]) rotate([0, 0, 90]) li_ion_4056_charger_module();
translate ([38, -40, 10]) rotate([90, 0, 0]) rotate([0, 90, 0]) switch();
translate([0, 0, 35]) pcb();
translate([0, -14, 9]) rotate([0, 90, 0]) battery_18650();
}
test_fit_components();