Skip to content

Commit 5cc8114

Browse files
committed
slight fixes
1 parent a04dc2c commit 5cc8114

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

control_panel/control_panel.scad

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
$fn=40;
22

3-
height=6.8;
3+
//height=6.8;
44

5-
//height=5.2;
5+
height=4.5;
66

77
module panel(h)
88
{
@@ -73,9 +73,9 @@ difference() {
7373
cylinder(r=7, h=10);
7474

7575

76-
translate([-10,27,height-2.6 ])
76+
translate([-10,27,2.75 ])
7777
rotate([0,90,0])
78-
cylinder(r=2.3, h=20);
78+
cylinder(r=2.75, h=20);
7979

8080
translate([-1,-1,0])
8181
screw();

controller_enclosure/controller_enclosure.scad

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ midpower=false;
55

66
width_gap=1.6;
77
width = (highpower ? 85.5 : (midpower ? 71 : 50)) + width_gap*2;
8-
length = highpower ? 116 : (midpower ? 104 : 76);
8+
length = highpower ? 116 : (midpower ? 104 : 76.5);
99

1010
bottom_height = highpower ? 10 : midpower ? 8 : 8;
11-
thickness = 1.2;
11+
thickness = highpower || midpower ? 1.2 : 1;
1212
top_thickness = 1.6;
1313
bottom_edge = 12;
1414
board_thickness=3;
@@ -84,7 +84,7 @@ module all() {
8484
module bottom() {
8585
difference() {
8686
union() {
87-
translate([0, thickness/4, mount_gap])
87+
translate([0, 0, mount_gap])
8888
minkowski() {
8989
cubecxy(width+thickness/2, length, bottom_height-thickness);
9090
cylinder(r=thickness, h=thickness);
@@ -368,14 +368,14 @@ module top() {
368368
}
369369

370370
//translate([1.4*width, 0, 0])
371-
//bottom();
371+
bottom();
372372

373373

374374

375375
//translate([0,0, top_height+bottom_height+thickness*2+.01+mount_gap])
376376
//rotate([180,0,0])
377377
{
378378

379-
top();
379+
//top();
380380

381381
}

0 commit comments

Comments
 (0)