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