make class content part of software
[challenge-bot] / guide / hausner / 2016 / 08 / overview.org
CommitLineData
20b025c5 1#+TITLE:hausner challenge-bot overview
29ef6be3 2#+SETUPFILE: ../../org-html-themes/setup/theme-readtheorg.setup
9394bb8e 3* assembling the hardware
4 go to the [[file:0-mechanical-assembly/mechanical-assembly.html][mechanical assembly]] page to see excruciating detail
5 on how to put the mechanical parts together.
e1d90ff4 6* software
7 software is available as nice neat installable packages for
8 Mac OS X, GNU+Linux, and MS Windows.
1a35441e 9
e1d90ff4 10 it's also available in source code form, so you can compile it for
11 other platforms.
1a35441e 12
e1d90ff4 13 all software used in this robot is available for you to use for any
14 purpose, improve, and, share those improvements (if you want).
2d29b38c 15** robot behavior: arduino
3d74bac6 16 control how the robot gets information from sensors, and moves
17 its motors.
18
19 https://www.arduino.cc/en/Main/Software
81ae9973 20** part shaping: openscad
3d74bac6 21 create robot parts!
22
23 use this program to view parts inside the "3d-printables"
17e3661c 24 directory of the class content.
25 there's a class content section below.
26 write code to modify the parts and create completely new ones.
3d74bac6 27
28 http://www.openscad.org/downloads.html
2d29b38c 29** wiring: fritzing
3d74bac6 30 wire up components!
31
96b221dc 32 you can also create your own circuit board layouts and get your
33 design fabricated by fritzing.
34
3d74bac6 35 http://fritzing.org/download/?donation=0
2d29b38c 36** extract: 7-zip
3d74bac6 37 extract the contents of .tgz files, like the content of this class.
38
39 this is needed on MS Windows(tm) only.
3a70509f 40
88aaf086 41 if you are on Mac OS X, or GNU (on top of cygwin or linux), then you
42 do not need this.
43 operating systems other than MS Windows can extract class content
44 with no extra software.
3a70509f 45
3d74bac6 46 http://7-zip.org/
ab39f6a5 47** class content
48 all the source code for the class is available here:
49
50 http://challenge-bot.com/repos/?p=challenge-bot;a=snapshot;h=232ff7a14f9d8be27362c268c6cdd1b67f59a24a;sf=tgz
51
52 what follows is a high level description of the contents of the most
53 important top level directories in the class content.
54*** 3d-printables
55 the parts of the robot that are 3d-printed are in this directory.
56 use openscad to open the parts in this directory.
57*** build-stages
58 all the wiring diagrams and arduino code live in this directory.
59
60 under this directory, there is one subdirectory for each
61 build stage.
62 each build stage is prefixed with a letter to make it appear in
63 order.
64 for example, =a_serial= contains the first build stage.
e1d90ff4 65* troubleshooting
ab39f6a5 66 to troubleshoot a misbehaving robot, go through these stages
67 in order until you find a stage that does not work correctly.
ef5f7e4a 68
ab39f6a5 69 first, in =a_serial=, you'll check whether the arduino can
70 communicate over the serial connection with the computer.
ef5f7e4a 71
ab39f6a5 72 in each stage, make sure the wires shown in the fritzing
73 diagram are correctly connected on your robot.
74 then load the corresponding arduino sketch to your robot
75 and either check the serial monitor, or turn on the motor battery.
ef5f7e4a 76
ab39f6a5 77 this will help you pinpoint exactly where the problem lies on your
78 robot.