Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

37 lines
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. }