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