add some TODOs
[challenge-bot] / 3d-printables / wheel-black.scad
CommitLineData
8464810c 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
7use <wheel.scad>
8
9qr_size = 54;
10qr_height = 2;
11
12wall_width = 3;
13
14wheel_width = 6;
15wheel_radius = sqrt(2 * pow(qr_size / 2, 2)) + wall_width / 2;
16
17motor_shaft_radius = 3.7;
18motor_shaft_flat_width = 4.8;
19
00f879c4 20translate([-30.4, -1.6, 0]){
21 rim(wheel_radius + 5, 5, 0.4);
22 rim(wheel_radius + 3, 0.4, qr_height + 1);
23
8464810c 24 wheel_black(wheel_radius,
25 wheel_width,
26 motor_shaft_radius,
27 motor_shaft_flat_width,
28 wall_width);}