add sticker to do
[challenge-bot] / TODO.rkt
CommitLineData
1f5bdd82 1#! /usr/bin/env racket
2#lang racket/base
3
4(define todo
2cfdf28f 5 ;; list of specific things to do for challenge-bot class
1f5bdd82 6 (list
d0091591 7 (list "programming guide to the challenge"
8 (list
9 "experiments and self test 2 page 4 of 15"
10 "code is incomplete, needs int led = 13 and setup() too")
11 "code in programming guide hard to read, make bigger")
cff668cc 12 "make challenge for blinking based on how far away hand is"
13 "get gyroscopes"
14 "change turnaround to spin_left and spin_right"
15 "remove \"forward_speed\" and \"stop_speed\" from g_follow"
16 "video should show motor doesn't react to hand for left motor"
2cfdf28f 17 "make a case for the 9v and 6v battery holders"
08e98c8d 18 "make new stickers from new qr code"
2cfdf28f 19 (string-append "order these: http://www.ebay.com/itm/"
20 "100-x-Ultrasonic-Module-HC-SR04-Distance-Measuring"
21 "-Transducer-Sensor-for-Arduino-/"
22 "161156018270?_trksid=p2054897.l5658")))
23
24(define ideas
0bbe342b 25 (list
d0091591 26 "make the robots talk to each other"
27 "have one robot load its program to another"
ddf26b99 28 (list "from 0 to movement faster"
29 "hook motor directly to battery"
30 (string-append "solder wires to motors, attach motors,"
31 " wheels, castor, battery packs and get"
32 " the robot moving forwards, backwards,"
33 " or turning in place")
34 "hook up motor controller, have robot")
0bbe342b 35 (list
36 "series of challenges"
37 (list
38 "Create series of simple challenges with associated awards (?)"
39 "Simple challenges all relate directly to a larger competition."))
40 (list
41 "3d printed hubs instead of wheels"
42 "that way they can make their own wheel to attach to the hub")
43 (list
44 "things we should do on our own with robots we have right now"
45 (list
46 "maze"
47 (list "solve a maze with right hand rule")
48 (list "turn 90 degrees")
49 (list
50 "calibrate the robot to drive straight forward with dead reckoning
2cfdf28f 51 and hardcoding values. see how straight it can go.")
0bbe342b 52 (list "1 of 4 maps")
53 (list "shoot a ball with a ziptie")
54 (list
55 "maze mechanics"
56 "go forward, then shoot, then continue maze."
57 "intersection with light, get time bonus for passing at right time"
58 "line following"
59 "servo on robot to pick up something")
60 (list
61 "find sensors"
62 (list
63 "line following"
64 (list
65 "the line follower from sparki"
66 "get 5 of the following:"
67 (list "ir sensor" "mouser part 638-ITR8307TR8")
68 (list "resistor" "220 ohm")
69 (list "resistor" "47k ohm")
70 (list "1/4 inch by 4 inch" "osh park")))
71 "is a light on?"
72 "look into pricing on gyro, accelerometer, encoder"
73 "how was wayne planning on doing encoder")))
74 (list
75 "build software"
76 "make a change to fritzing and compile it and see it")
77 (list
78 "review the following notes for improvements"
79 (list
80 "http://goo.gl/ZZ4E8E"
ddf26b99 81 "http://goo.gl/ilZiXR"))))