X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=3d-printables%2Fsonar-table-top-holder.scad;h=7834bc623237994e863ad6f38dbfcab29e3841c1;hb=25cd00a6b1d4f62e856346393972298f01dbabe3;hp=55ba1c9ed8beb70aedfd6a26a4ee9381ce333747;hpb=be16f4198dbd2d303a568e5c0d501dd0bb0819c2;p=challenge-bot diff --git a/3d-printables/sonar-table-top-holder.scad b/3d-printables/sonar-table-top-holder.scad index 55ba1c9..7834bc6 100644 --- a/3d-printables/sonar-table-top-holder.scad +++ b/3d-printables/sonar-table-top-holder.scad @@ -1,60 +1,39 @@ +/* + Copyright (C) 2015 Daniel Watson + See the end of the file for license conditions. +*/ // challenge-bot // GNU AGPLv3 (or later at your option) -// project available at these locations: -// https://gitorious.org/ozzloy/challenge-bot -// https://github.com/waynegramlich/challenge-bot +// project available here: +// https://challenge-bot.com/ + +/* + this holds an hc-sr04 sonar sensor to a 3/16 inch deck. + http://fritzing.org/projects/hc-sr04-project + it can hold the sonar sensor either facing down, or forwards. + when facing down, it can detect if it passes over the edge of a table. + when facing forwards, it can detect and follow something in front of it. + */ $fn = 60; -// 3/16 inch in mm deck_depth = 4.7625; -// 1/4 inch in mm = 6.35 -// subtract a little to be a squeeze fit -deck_depth = 6.35 - 0.4; -sonar_plate_width = 20; -// sonar sensor measurements taken with calipers: -// 10.82 in between, 42.33 outside, 15.82 diameter -// measured diameter of 15.82 with calipers, -// but when printed ends up being too small -sonar_sensor_radius = 15.82 / 2 + 0.3; -sonar_sensor_height = 13.8; -between_sensor_centers = 15.82 + 10.82; -sonar_plate_length = 3 + between_sensor_centers + sonar_sensor_radius + 3; -sonar_holder_length = sonar_plate_length + 10; -sonar_holder_width = sonar_plate_width + 3; -sonar_holder_depth = 4; - -deck_holder_length = 30; - -module sensors(){ - translate([between_sensor_centers / 2, 0, 0]){ - cylinder(r = sonar_sensor_radius, h = sonar_sensor_height);} - translate([-between_sensor_centers / 2, 0, 0]){ - cylinder(r = sonar_sensor_radius, h = sonar_sensor_height);}} - -module sensor_holder(){ - difference(){ - cube([sonar_holder_length, sonar_holder_width, sonar_holder_depth]); - translate([sonar_holder_length / 2, sonar_holder_width / 2, -0.05]){ - sensors();}} - translate([sonar_holder_length, 0, 0]){ - cube([sonar_holder_depth + 0.7, deck_depth, deck_depth - 0.7]); - translate([sonar_holder_depth + 0.7, 0, 0]){ - // subtract a little bit (0.3) to make it fit - cube([deck_depth - 0.7, sonar_holder_width, deck_depth - 0.7]);}}} - -module deck_holder(){ - deck_holder_width = sonar_holder_width - deck_depth; - cube([deck_holder_length, sonar_holder_depth, deck_holder_width]); - cube([sonar_holder_depth, - sonar_holder_depth * 2 + deck_depth, - deck_holder_width]); - translate([0, sonar_holder_depth + deck_depth, 0]){ - cube([deck_holder_length, sonar_holder_depth, deck_holder_width]);} - translate([sonar_holder_depth + deck_depth, 0, 0]){ - cube([sonar_holder_depth, - sonar_holder_depth * 2 + deck_depth, - deck_holder_width]);}} - -translate([0, sonar_holder_depth * 2 + deck_depth + 2, 0]){ - sensor_holder();} -deck_holder(); +include + +sonar_holder(); + +/* + This file is part of challenge-bot. + + Challenge-bot is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + GNU Affero Emacs is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/