-
Notifications
You must be signed in to change notification settings - Fork 1
/
outline.txt
41 lines (30 loc) · 1.1 KB
/
outline.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
The Plan:
Part1:
objective: Implement a maze solving algorithm in python
steps:
1: Generate pixel maze (10*10)
1.1: https://hereandabove.com/maze/mazeorig.form.html *
2: Analyze pixel maze in mazetograph.py
2.1: - create data structure from image *
- find start and end
2.2: put nodes on bends and junctions
2.3: give node connections distance weighting
3: implement algorith in pathfinding.py
3.1: implement djikstras algorithm or a* or d*
3.2: navigate the maze and output shortest path along nodes
Part2;
objective: Implement maze navigation in an arduino
steps:
1: make robot
2: make movement library/api for robot
3: make physical maze
4: implement bluetooth data read in
Resources:
maze generation:
https://hereandabove.com/maze/mazeorig.form.html
Stepper Control:
http://www.airspayce.com/mikem/arduino/AccelStepper/classAccelStepper.html
https://42bots.com/tutorials/28byj-48-stepper-motor-with-uln2003-driver-and-arduino-uno/
Comms:
http://www.userk.co.uk/arduino-bluetooth-linux/
https://botforge.wordpress.com/2016/07/26/the-right-way-to-connect-an-hc-05-bluetooth-module-to-an-arduino/