use qr code for wheel
[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
20translate([-30, -0.6, 0]){
21 wheel_black(wheel_radius,
22 wheel_width,
23 motor_shaft_radius,
24 motor_shaft_flat_width,
25 wall_width);}