use spokes instead of square for wheel
[challenge-bot] / 3d-printables / whole-robot.scad
CommitLineData
25cd00a6 1/*
2 Copyright (C) 2015 Daniel Watson
3 See the end of the file for license conditions.
4*/
e7a438f9 5// challenge-bot
6// GNU AGPLv3 (or later at your option)
25cd00a6 7// project available here:
8// https://challenge-bot.com/
e7a438f9 9
10// use $fn = 20 while developing, 100 when about to print
11// 20 will make previews fast
12// 100 will make printing smooth
13
14// wheel(wheel_radius,
15// wheel_width,
16// motor_shaft_radius,
17// motor_shaft_flat_width,
18// wall_width,
19// tread_radius);
20
21include <whole-robot-data.scad>
22
23between_parts = 1;
e7a438f9 24deck_holder();
25translate([deck_holder_length + between_parts, 0, 0]){
25cd00a6 26 sonar_holder();}
27
28/*
29 This file is part of challenge-bot.
30
31 Challenge-bot is free software: you can redistribute it and/or modify
32 it under the terms of the GNU Affero General Public License as published by
33 the Free Software Foundation, either version 3 of the License, or
34 (at your option) any later version.
35
36 GNU Affero Emacs is distributed in the hope that it will be useful,
37 but WITHOUT ANY WARRANTY; without even the implied warranty of
38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 GNU Affero General Public License for more details.
40
41 You should have received a copy of the GNU Affero General Public License
42 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
43*/