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.

37 line
1.2KB

  1. $fn=64;
  2. hex_hole_x = 69;
  3. hex_hole_y = 51;
  4. pca9685_hole_x = 56;
  5. pca9685_hole_y = 19;
  6. pca9685_width = 28;
  7. module corner_holes(x, y, diameter, height) {
  8. translate([ x/2, y/2, 0]) cylinder(d=diameter, h=height);
  9. translate([-x/2, y/2, 0]) cylinder(d=diameter, h=height);
  10. translate([ x/2, -y/2, 0]) cylinder(d=diameter, h=height);
  11. translate([-x/2, -y/2, 0]) cylinder(d=diameter, h=height);
  12. }
  13. difference() {
  14. union() {
  15. hull() {
  16. corner_holes(hex_hole_x, hex_hole_y, 6,3);
  17. }
  18. translate([0, pca9685_width/2, 0]) corner_holes(pca9685_hole_x, pca9685_hole_y, 6, 6);
  19. translate([0, -pca9685_width/2, 0]) corner_holes(pca9685_hole_x, pca9685_hole_y, 6, 6);
  20. }
  21. translate([0, pca9685_width/2, 0]) corner_holes(pca9685_hole_x, pca9685_hole_y, 3, 6);
  22. translate([0, -pca9685_width/2, 0]) corner_holes(pca9685_hole_x, pca9685_hole_y, 3, 6);
  23. hull() {
  24. translate([0, pca9685_width/2, 0]) corner_holes(pca9685_hole_x-9, pca9685_hole_y-9, 3, 3);
  25. translate([0, -pca9685_width/2, 0]) corner_holes(pca9685_hole_x-9, pca9685_hole_y-9, 3, 3);
  26. }
  27. corner_holes(hex_hole_x, hex_hole_y, 3,6);
  28. }