define wiring in separate file
[challenge-bot] / 3d-printables / sonar-binder-clip-holder.scad
1 /*
2 Copyright 2016 Daniel Watson
3 See the end of the file for license conditions.
4 */
5 /* challenge-bot
6 // GNU AGPLv3 (or later at your option)
7 // project available here:
8 // https://challenge-bot.com/ */
9
10 /*
11 this holds an hc-sr04 sonar sensor to a 3/16 inch deck.
12 http://fritzing.org/projects/hc-sr04-project
13 it can hold the sonar sensor either facing down, or forwards.
14 when facing down, it can detect if it passes over the edge of a table.
15 when facing forwards, it can detect and follow something in front
16 of it.
17 */
18
19 include <sonar-binder-clip-holder-data.scad>
20
21 for(ii = [0:1], jj = [0:5]) {
22 translate([ii * sonar_radius * 10, jj * sonar_radius * 3.5]) {
23 sonar_binder_clip_holder(sonar_radius,
24 between_sonar_centers,
25 between_sonar_centers_variation,
26 screw_radius,
27 wall_thickness,
28 sonar_binder_clip_holder_height); } }
29
30 /*
31 This file is part of challenge-bot.
32
33 Challenge-bot is free software: you can redistribute it and/or modify
34 it under the terms of the GNU Affero General Public License as published by
35 the Free Software Foundation, either version 3 of the License, or
36 (at your option) any later version.
37
38 GNU Affero Emacs is distributed in the hope that it will be useful,
39 but WITHOUT ANY WARRANTY; without even the implied warranty of
40 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 GNU Affero General Public License for more details.
42
43 You should have received a copy of the GNU Affero General Public License
44 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
45 */