Plastic parts additions and fixes
This commit is contained in:
parent
4510c4c60a
commit
756cdcad88
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@ firmware/*.bin
|
||||
*.ps
|
||||
*.zip
|
||||
fp-info-cache
|
||||
*.stl
|
||||
|
20
colon-stand.scad
Normal file
20
colon-stand.scad
Normal 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();
|
||||
|
||||
}
|
10
frame.scad
10
frame.scad
@ -9,17 +9,17 @@ module thingie() {
|
||||
EDGE_LENGTH + 2 * WRAPAROUND,
|
||||
EDGE_LENGTH + 2 * WRAPAROUND*2 + PCB_THICKNESS,
|
||||
9]);
|
||||
translate([EDGE_LENGTH+17+5+2, EDGE_LENGTH+5+6]) {
|
||||
cylinder(10, EDGE_LENGTH+5, EDGE_LENGTH+5, $fn=100);
|
||||
translate([EDGE_LENGTH+17+5+3, EDGE_LENGTH+5+5]) {
|
||||
cylinder(10, EDGE_LENGTH+5, EDGE_LENGTH+5, $fn=500);
|
||||
};
|
||||
|
||||
translate([-142,71]) {
|
||||
cylinder(10, 155, 155, $fn=100);
|
||||
translate([-141,73]) {
|
||||
cylinder(10, 155, 155, $fn=500);
|
||||
};
|
||||
|
||||
|
||||
translate([WRAPAROUND, WRAPAROUND*3,1]) {
|
||||
translate([13, PCB_THICKNESS,0]) {
|
||||
translate([14, PCB_THICKNESS,0]) {
|
||||
cube([PCB_THICKNESS,EDGE_LENGTH,20]);
|
||||
}
|
||||
cube([EDGE_LENGTH,PCB_THICKNESS,20]);
|
||||
|
Loading…
Reference in New Issue
Block a user