define wiring in separate file
[challenge-bot] / 3d-printables / sonar-table-top-holder.scad
CommitLineData
25cd00a6 1/*
2 Copyright (C) 2015 Daniel Watson
3 See the end of the file for license conditions.
4*/
dac38b58 5// challenge-bot
6// GNU AGPLv3 (or later at your option)
25cd00a6 7// project available here:
8// https://challenge-bot.com/
dac38b58 9
3d01ee80 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 of it.
16 */
17
978bd219 18$fn = 60;
19
3d90aff0 20include <sonar-table-top-holder-data.scad>
7888bdfb 21
180a0f6f 22sonar_holder();
25cd00a6 23
24/*
25 This file is part of challenge-bot.
26
27 Challenge-bot is free software: you can redistribute it and/or modify
28 it under the terms of the GNU Affero General Public License as published by
29 the Free Software Foundation, either version 3 of the License, or
30 (at your option) any later version.
31
32 GNU Affero Emacs is distributed in the hope that it will be useful,
33 but WITHOUT ANY WARRANTY; without even the implied warranty of
34 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 GNU Affero General Public License for more details.
36
37 You should have received a copy of the GNU Affero General Public License
38 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
39*/