Maze_Solver  1.0
A Maze Solver Algorithm for BotnRoll ONE A
IntersectionName.h
Go to the documentation of this file.
1 #ifndef INTERSECTION_NAME
2 #define INTERSECTION_NAME
3 
4 char* intersectionName[]={ "NONE",
5  "DEAD_END",
6  "CROSS",
7  "T_JUNCTION",
8  "RIGHT_TURN",
9  "LEFT_TURN",
10  "RIGHT_STRAIGHT",
11  "LEFT_STRAIGHT"
12 };
13 
14 char* intersectionStr[]={
15  "NONE",
16  "DEAD_END",
17  "CROSS",
18  "T_JUNCTION",
19  "RIGHT_TURN",
20  "LEFT_TURN",
21  "RIGHT_STRAIGHT",
22  "LEFT_STRAIGHT"
23 };
24 #endif
char * intersectionName[]
Definition: IntersectionName.h:4
char * intersectionStr[]
Definition: IntersectionName.h:14