Charging module support

This commit is contained in:
2026-01-04 11:57:25 +01:00
parent 554964de01
commit 0811fe5e51
3 changed files with 11 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ module fabula_enclosure_bottom() {
// Supports // Supports
translate([-30, 0, 19.1]) supports_speaker(); translate([-30, 0, 19.1]) supports_speaker();
translate([28, 0, 14.1]) rotate([0, 180, 90]) supports_battery(); translate([28, 0, 14.1]) rotate([0, 180, 90]) supports_battery();
translate([70.4, 29, 18]) rotate([0, 0, 180]) #supports_charging_module();
// Cutouts // Cutouts
} }

View File

@@ -13,3 +13,10 @@ module supports_battery() {
translate([0, 0, 3]) rotate([0, 90, 0]) cylinder(h = 67, d = 19, center = true); translate([0, 0, 3]) rotate([0, 90, 0]) cylinder(h = 67, d = 19, center = true);
} }
} }
module supports_charging_module() {
difference() {
cube([30.2, 21.2, 5], true);
translate([-2, 0, 0]) cube([28.2, 17.2, 6], true);
}
}

View File

@@ -11,8 +11,8 @@ module test_fit_components() {
translate([0, -28, 9]) rotate([0, 90, 0]) battery_18650(); translate([0, -28, 9]) rotate([0, 90, 0]) battery_18650();
// Components that require cutout on external shell // Components that require cutout on external shell
translate([-35, -78, 30]) rotate([90, 0, 0]) li_ion_4056_charger_module(); translate([-29, -71.5, 1]) rotate([0, 0, 90]) li_ion_4056_charger_module();
translate([-5, -92, 30]) rotate([90, 0, 0]) switch(); translate([-5, -92, 10]) rotate([90, 0, 0]) switch();
} }
test_fit_components(); test_fit_components();