Plastic parts additions and fixes

This commit is contained in:
Lauri Võsandi 2024-07-21 08:58:31 +03:00
parent 4510c4c60a
commit 756cdcad88
3 changed files with 26 additions and 5 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ firmware/*.bin
*.ps *.ps
*.zip *.zip
fp-info-cache fp-info-cache
*.stl

20
colon-stand.scad Normal file
View File

@ -0,0 +1,20 @@
H = 21;
Q = 1.2;
D = 1;
module j() {
cylinder(h=100, d=D, $fn=20);
translate([0,0,H-Q]) cylinder(5,0,5,$fn=20);
cylinder(Q,Q,0,$fn=20);
}
difference() {
hull() {
translate([6.5, 0]) cylinder(h=H, d=4, $fn=50);
translate([-6.5, 0]) cylinder(h=H, d=4, $fn=50);
}
translate([6.5, 0]) j();
translate([-6.5, 0]) j();
translate([3.5, 0]) j();
translate([-3.5, 0]) j();
}

View File

@ -9,17 +9,17 @@ module thingie() {
EDGE_LENGTH + 2 * WRAPAROUND, EDGE_LENGTH + 2 * WRAPAROUND,
EDGE_LENGTH + 2 * WRAPAROUND*2 + PCB_THICKNESS, EDGE_LENGTH + 2 * WRAPAROUND*2 + PCB_THICKNESS,
9]); 9]);
translate([EDGE_LENGTH+17+5+2, EDGE_LENGTH+5+6]) { translate([EDGE_LENGTH+17+5+3, EDGE_LENGTH+5+5]) {
cylinder(10, EDGE_LENGTH+5, EDGE_LENGTH+5, $fn=100); cylinder(10, EDGE_LENGTH+5, EDGE_LENGTH+5, $fn=500);
}; };
translate([-142,71]) { translate([-141,73]) {
cylinder(10, 155, 155, $fn=100); cylinder(10, 155, 155, $fn=500);
}; };
translate([WRAPAROUND, WRAPAROUND*3,1]) { translate([WRAPAROUND, WRAPAROUND*3,1]) {
translate([13, PCB_THICKNESS,0]) { translate([14, PCB_THICKNESS,0]) {
cube([PCB_THICKNESS,EDGE_LENGTH,20]); cube([PCB_THICKNESS,EDGE_LENGTH,20]);
} }
cube([EDGE_LENGTH,PCB_THICKNESS,20]); cube([EDGE_LENGTH,PCB_THICKNESS,20]);