add caster section's subsection
[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 (subsection
41 :title [deck placement]))
42 (section
43 :title [sonars]))
44 (chapter
45 :title [wiring and software]
46 (section
47 :title [serial])
48 (section
49 :title [left sonar])
50 (section
51 :title [both sonars])
52 (section
53 :title [left motor])
54 (section
55 :title [both motors])
56 (section
57 :title [untethered])
58 (section
59 :title [follow])
60 (section
61 :title [stay on table])))
62
63 ;; Copyright 2016 daniel watson
64
65 ;; This file is part of challenge-bot.
66
67 ;; challenge-bot is free software: you can redistribute it and/or modify
68 ;; it under the terms of the GNU Affero General Public License as
69 ;; published by the Free Software Foundation, either version 3 of the
70 ;; License, or (at your option) any later version.
71
72 ;; challenge-bot is distributed in the hope that it will be useful,
73 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
74 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
75 ;; GNU Affero General Public License for more details.
76
77 ;; You should have received a copy of the GNU Affero General Public
78 ;; License along with challenge-bot. If not, see
79 ;; <http://www.gnu.org/licenses/>.