diff --git a/box.scad b/box.scad new file mode 100644 index 0000000..e4ea3c2 --- /dev/null +++ b/box.scad @@ -0,0 +1,20 @@ +difference() { +cube([30,25,20]); + //hoop + translate([15,12.5,-905]){ + rotate([90,0,0]) + rotate_extrude($fn=300) + translate([900,0,0]) + circle(d=25, $fn=100); + }; + //pico + translate([3.25,3.5,0]) + cube([23.5,18,12]); + //pico usb port + translate([26.75,8,6.5]) + cube([3.25,9,5.5]); + //wifi + translate([2.5,5,12]) + cube([25,15,5]); + +}; \ No newline at end of file diff --git a/box.stl b/box.stl new file mode 100644 index 0000000..4cff76d Binary files /dev/null and b/box.stl differ