remove unused qr code from wheel
[challenge-bot] / 3d-printables / wheel.scad
CommitLineData
bc02cd24 1// challenge-bot
2// GNU AGPLv3 (or later at your option)
3// project available at these locations:
4// https://gitorious.org/ozzloy/challenge-bot
5// https://github.com/waynegramlich/challenge-bot
6
136c3fb0 7// use $fn = 20 while developing, 100 when about to print
8// 20 will make previews fast
9// 100 will make printing smooth
8464810c 10$fn = 100;
136c3fb0 11
3d90aff0 12include <wheel-data.scad>
defb83a5 13
8464810c 14wheel(wheel_radius,
15 wheel_width,
16 motor_shaft_radius,
17 motor_shaft_flat_width,
403f9f0c 18 wall_width,
19 tread_radius);