grip deck holder more tightly, fix formatting
[challenge-bot] / 3d-printables / sonar-table-top-holder.scad
CommitLineData
dac38b58 1// challenge-bot
2// GNU AGPLv3 (or later at your option)
3// project available at these locations:
4// https://gitorious.org/ozzloy/challenge-bot
5// https://github.com/waynegramlich/challenge-bot
6
978bd219 7$fn = 60;
8
9// 3/16 inch in mm deck_depth = 4.7625;
be16f419 10// 1/4 inch in mm = 6.35
11// subtract a little to be a squeeze fit
8b340909 12deck_depth = 4.7625 - 0.4;
8ca271e9 13// sonar sensor measurements taken with calipers:
49bffb72 14// 10.82 in between, 42.33 outside, 15.82 diameter
8ca271e9 15// measured diameter of 15.82 with calipers,
8b84f6f3 16// but when printed ends up being too small, so add some
651bbf4b 17sonar_diameter = 15.82 + 0.4;
8b84f6f3 18sonar_radius = sonar_diameter / 2;
19sonar_height = 13.8;
20between_sonar_centers = sonar_diameter + 10.82;
21// the sonar cylinders are placed on the pcb at slightly different positions
22// from one sensor to the next, so this allows for that variance.
23between_sonar_centers_variance = 2;
24// keep at least this much plastic surrounding the sonar cylinder on all sides
bc750455 25buffer = 3;
8b84f6f3 26sonar_holder_length = buffer + between_sonar_centers + sonar_diameter + buffer;
27sonar_holder_width = buffer + sonar_diameter + buffer;
bc750455 28// sonar_holder_depth is deck_depth minus a little bit to make arm fit
29// into deck holder
34e9f480 30sonar_holder_depth = deck_depth - 0.7875;
8ca271e9 31
bc750455 32deck_holder_length = sonar_holder_depth * 2 + deck_depth + 15;
74f8c088 33
8b84f6f3 34module sonars(){
35 translate([between_sonar_centers / 2, 0, 0]){
36 cylinder(r = sonar_radius, h = sonar_height);}
37 // for the variance with which the physical sonar cylinders are placed
38 translate([between_sonar_centers / 2 - between_sonar_centers_variance, 0, 0]){
39 cylinder(r = sonar_radius, h = sonar_height);
40 translate([0, -sonar_radius, 0]){
41 cube([between_sonar_centers_variance, sonar_diameter, sonar_height]);}}
42 translate([-between_sonar_centers / 2, 0, 0]){
43 cylinder(r = sonar_radius, h = sonar_height);}}
74f8c088 44
8b84f6f3 45module sonar_holder(){
34e9f480 46 elbow_length = deck_depth - 0.5;
49bffb72 47 difference(){
48 cube([sonar_holder_length, sonar_holder_width, sonar_holder_depth]);
49 translate([sonar_holder_length / 2, sonar_holder_width / 2, -0.05]){
8b84f6f3 50 sonars();}}
51 translate([sonar_holder_length, 0, 0]){
34e9f480 52 cube([elbow_length, deck_depth, sonar_holder_depth]);
8b84f6f3 53 translate([elbow_length, 0, 0]){
54 linear_extrude(height = sonar_holder_depth){
34e9f480 55 polygon([[ 0, 0],
8b84f6f3 56 [sonar_holder_depth, 0],
57 [sonar_holder_depth, sonar_holder_width / 2],
34e9f480 58 [ 0,
59 sonar_holder_width / 2 + sonar_holder_depth]]);}
8b84f6f3 60 translate([0, (sonar_holder_width + sonar_holder_depth) / 2, 0]){
61 cube([sonar_holder_depth / 2,
62 (sonar_holder_width - sonar_holder_depth) / 2 + 0.8,
63 sonar_holder_depth]);}
60061640 64 translate([-1.7, sonar_holder_width + 0.8, 0]){
8b84f6f3 65 linear_extrude(height = sonar_holder_depth){
34e9f480 66 polygon([[ 0, 0],
8b84f6f3 67 [sonar_holder_depth / 2 + 1.7, 4],
68 [sonar_holder_depth / 2 + 1.7, 0]]);}}}}}
49bffb72 69
74f8c088 70module deck_holder(){
be16f419 71 deck_holder_width = sonar_holder_width - deck_depth;
bc750455 72 linear_extrude(height = deck_holder_width){
73 difference(){
74 square([deck_holder_length, sonar_holder_depth * 2 + deck_depth]);
75 translate([sonar_holder_depth, sonar_holder_depth]){
76 square(deck_depth);}
77 translate([sonar_holder_depth * 2 + deck_depth, sonar_holder_depth]){
78 square([deck_holder_length - (sonar_holder_depth * 2 + deck_depth),
79 deck_depth]);}}}}
74f8c088 80
be16f419 81deck_holder();
8b84f6f3 82translate([0, sonar_holder_depth * 2 + deck_depth + 2, 0]){
83 sonar_holder();}