fill in wheels section's subsections
[challenge-bot] / curriculum / challenge-bot.scm
1 ;; tldr; AGPLv3+
2 ;; copyright info at bottom
3
4 (document
5 :title [challenge-bot]
6 (chapter
7 :title [mechanical]
8 (section
9 :title [arduino]
10 (subsection
11 :title [arduino placement])
12 (subsection
13 :title [first hole and screw])
14 (subsection
15 :title [second hole and screw])
16 (subsection
17 :title [third and fourth hole and screw]))
18 (section
19 :title [battery packs]
20 (subsection
21 :title [leads])
22 (subsection
23 :title [deck attachment]))
24 (section
25 :title [motors]
26 (subsection
27 :title [leads])
28 (subsection
29 :title [mount])
30 (subsection
31 :title [deck attachment]))
32 (section
33 :title [wheels]
34 (subsection
35 :title [tread])
36 (subsection
37 :title [motor]))
38 (section
39 :title [caster])
40 (section
41 :title [sonars]))
42 (chapter
43 :title [wiring and software]
44 (section
45 :title [serial])
46 (section
47 :title [left sonar])
48 (section
49 :title [both sonars])
50 (section
51 :title [left motor])
52 (section
53 :title [both motors])
54 (section
55 :title [untethered])
56 (section
57 :title [follow])
58 (section
59 :title [stay on table])))
60
61 ;; Copyright 2016 daniel watson
62
63 ;; This file is part of challenge-bot.
64
65 ;; challenge-bot is free software: you can redistribute it and/or modify
66 ;; it under the terms of the GNU Affero General Public License as
67 ;; published by the Free Software Foundation, either version 3 of the
68 ;; License, or (at your option) any later version.
69
70 ;; challenge-bot is distributed in the hope that it will be useful,
71 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
72 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
73 ;; GNU Affero General Public License for more details.
74
75 ;; You should have received a copy of the GNU Affero General Public
76 ;; License along with challenge-bot. If not, see
77 ;; <http://www.gnu.org/licenses/>.