start scading the whole robot for printing
authordaniel watson <ozzloy@gmail.com>
Fri, 3 Apr 2015 03:35:16 +0000 (20:35 -0700)
committerdaniel watson <ozzloy@gmail.com>
Fri, 3 Apr 2015 03:35:16 +0000 (20:35 -0700)
3d-printables/whole-robot-data.scad [new file with mode: 0644]
3d-printables/whole-robot.scad [new file with mode: 0644]

diff --git a/3d-printables/whole-robot-data.scad b/3d-printables/whole-robot-data.scad
new file mode 100644 (file)
index 0000000..80f1dc1
--- /dev/null
@@ -0,0 +1,4 @@
+
+include <wheel-data.scad>
+include <deck-holder-data.scad>
+include <sonar-table-top-holder-data.scad>
diff --git a/3d-printables/whole-robot.scad b/3d-printables/whole-robot.scad
new file mode 100644 (file)
index 0000000..8f3acea
--- /dev/null
@@ -0,0 +1,24 @@
+// 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 $fn = 20 while developing, 100 when about to print
+//  20 will make previews fast
+//  100 will make printing smooth
+
+// wheel(wheel_radius,
+//       wheel_width,
+//       motor_shaft_radius,
+//       motor_shaft_flat_width,
+//       wall_width,
+//       tread_radius);
+
+include <whole-robot-data.scad>
+
+between_parts = 1;
+
+deck_holder();
+translate([deck_holder_length + between_parts, 0, 0]){
+  sonar_holder();}
\ No newline at end of file