This website requires JavaScript.
Cupones

    Bluetooth Speaker Enclosure

    head sculpture

    C************n

    2023-04-07

    read_icon 66
    3
    category Enclosure
    copyright Licencia: CC BY
    report Informe
    • 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:

    https://youtube.com/shorts/L1xKj5040WQ?feature=share

    Files

    • Bluetooth Speaker Bottom Side .stl

      70.00*40.00*70.00 mm | 23 Descargas

      Bluetooth Speaker Bottom Side .stl

      70.00*40.00*70.00 mm | 23 Descargas

    • Bluetooth Speaker Top .stl

      70.00*6.00*40.00 mm | 23 Descargas

      Bluetooth Speaker Top .stl

      70.00*6.00*40.00 mm | 23 Descargas

    Comentarios (2)

    • head sculpture

      s*************3

      2026-05-08 16:03:01

      // --- 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();



    • head sculpture

      G***********A

      2024-06-06 08:46:16