Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 řádky
518B

  1. module stepper_controller() {
  2. //board
  3. color("darkgreen") cube([15.24,20.32,1.5]);
  4. translate([0,0,1.5]){
  5. pin_header(8);
  6. translate([15.24-2.54,0,0]) pin_header(8);
  7. }
  8. }
  9. module pin_header(length) {
  10. translate([1.27,1.27,0])
  11. for (i = [0:length-1]){
  12. translate([0,2.54*i,2.55]){
  13. color("goldenrod") cube([0.62,0.62,11.15],center=true);
  14. translate([0,0,-1.225])
  15. color("#1a1a1a") hull() {
  16. cube([2.55,1.8,2.5],center=true);
  17. cube([1.8,2.55,2.5],center=true);
  18. }
  19. }
  20. }
  21. }