X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=blobdiff_plain;f=3d-printables%2Fwheel-black.scad;fp=3d-printables%2Fwheel-black.scad;h=98324e470611027dd73746268a3b221ac893d2e1;hp=0000000000000000000000000000000000000000;hb=8464810c568232490c911015bbd1f8cdde093442;hpb=64c08187b4a894a9b4a7b49e388b598e517014ee diff --git a/3d-printables/wheel-black.scad b/3d-printables/wheel-black.scad new file mode 100644 index 0000000..98324e4 --- /dev/null +++ b/3d-printables/wheel-black.scad @@ -0,0 +1,25 @@ +// challenge-bot +// GNU AGPLv3 (or later at your option) +// project available at these locations: +// https://gitorious.org/ozzloy/challenge-bot +// https://github.com/waynegramlich/challenge-bot + +use + +qr_size = 54; +qr_height = 2; + +wall_width = 3; + +wheel_width = 6; +wheel_radius = sqrt(2 * pow(qr_size / 2, 2)) + wall_width / 2; + +motor_shaft_radius = 3.7; +motor_shaft_flat_width = 4.8; + +translate([-30, -0.6, 0]){ + wheel_black(wheel_radius, + wheel_width, + motor_shaft_radius, + motor_shaft_flat_width, + wall_width);}