Housing for a bench power supply made from a PD Buddy Sink and a DPH3205. https://hackaday.io/project/21278-usb-pd-bench-power-supply
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

binding_post.scad 568B

123456789101112131415161718192021222324252627282930
  1. include <MCAD/polyholes.scad>;
  2. include <MCAD/units.scad>;
  3. /*
  4. * A hole for mounting binding posts.
  5. */
  6. module binding_post(h=1*mm, major_d=7.65*mm, flat_width=6*mm,
  7. clearance=0.35*mm) {
  8. hole_d = major_d + clearance;
  9. hole_flat = flat_width + clearance;
  10. intersection() {
  11. polyhole(d=hole_d, h=h);
  12. translate([-hole_flat/2, -hole_d/2, 0])
  13. cube([hole_flat, hole_d, h]);
  14. }
  15. }
  16. difference() {
  17. cube([16, 16 + 3/4*inch, 3]);
  18. translate([8, 8, -epsilon])
  19. binding_post(h=3+2*epsilon);
  20. translate([8, 8 + 3/4*inch, -epsilon])
  21. binding_post(h=3+2*epsilon);
  22. }