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

@@ -12,4 +12,11 @@ module supports_battery() {
cube([71, 23, 12], 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);
}
}