Bluetooth Speaker Enclosure
C************n
2023-04-07
3
- bluetooth speaker
- enclosure
- 3d printing
The most easiest bluetooth speaker without any support.
PLA or resin materials is recommended.
More details about the whole project, please check the Youtube video:
Files

Bluetooth Speaker Bottom Side .stl
70.00*40.00*70.00 mm | 23 下載
Bluetooth Speaker Bottom Side .stl
70.00*40.00*70.00 mm | 23 下載

Bluetooth Speaker Top .stl
70.00*6.00*40.00 mm | 23 下載
Bluetooth Speaker Top .stl
70.00*6.00*40.00 mm | 23 下載
評論 (2)
s*************3
2026-05-09 00:03:01
G***********A
2024-06-06 16:46:16
// --- Sahishnu Electronic Custom 3D Speaker Box ---
// Units: Millimeters (mm)
// --- Parameters ---
box_w = 160;
box_h = 85;
box_d = 75;
wall = 3.5;
spk_dia = 62; // For 2.5 inch speakers
rad_w = 77; // Passive Radiator Width
rad_h = 46; // Passive Radiator Height
module speaker_box_design() {
difference() {
// Main Box Body
cube([box_w, box_h, box_d], center = true);
// Hollow Interior
cube([box_w - (wall * 2), box_h - (wall * 2), box_d - (wall * 2)], center = true);
// Front: Two Speaker Holes
translate([-40, 0, (box_d/2) - wall])
cylinder(h=20, d=spk_dia, center=true, $fn=100);
translate([40, 0, (box_d/2) - wall])
cylinder(h=20, d=spk_dia, center=true, $fn=100);
// Back: Passive Radiator Slot
translate([0, 0, -((box_d/2) - wall)])
cube([rad_w, rad_h, 20], center=true);
// Side: Type-C Charging Port Hole (12x8mm)
translate([(box_w/2) - wall, -20, 0])
rotate([0, 90, 0]) cube([12, 8, 20], center=true);
// Side: Power Switch Hole (12mm Round)
translate([(box_w/2) - wall, 20, 0])
rotate([0, 90, 0]) cylinder(h=20, d=12, center=true, $fn=60);
}
}
// Generate the 3D Model
speaker_box_design();