Skip to content

Commit 3535ac0

Browse files
committed
Cover sensing area with one printed layer.
1 parent aeed77c commit 3535ac0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

hw/cad/sensor_frame.3mf

-1.36 KB
Binary file not shown.

hw/cad/sensor_frame.scad

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ clearance = 0.5;
44
sensor_width = 14.2;
55
sensor_lenght = 27.0;
66
sensor_height = 2.2;
7+
layer_thickness = 0.3;
78

89
module sensor_frame(){
910
difference(){
1011
hull(){
1112
translate([0,0,clearance])
1213
minkowski(){
13-
cube([sensor_width + 2*clearance, sensor_lenght+ 2*clearance, sensor_height-2*clearance],center=true);
14+
cube([sensor_width + 2*clearance, sensor_lenght+ 2*clearance, sensor_height-4*clearance + layer_thickness],center=true);
1415
sphere(r = clearance);
1516
}
1617
translate([0,0,-sensor_height/2 + clearance/20])
@@ -20,7 +21,7 @@ module sensor_frame(){
2021
}
2122
}
2223
cube([sensor_width + clearance, sensor_lenght + clearance, sensor_height],center=true);
23-
cube([sensor_width-2, sensor_lenght-2, 2*sensor_height],center=true);
24+
cylinder(h=sensor_height, d=5,center=false);
2425
}
2526
}
2627

hw/cad/sensor_frame.stl

5.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)