this code is completely restructured, but should do the same thing. did not want to directly commit, since it may not work at all. compiles though.

Dependencies:   AVEncoder mbed-src-AV

Fork of Test by 2015-2016_Mouserat

Committer:
jimmery
Date:
Tue Dec 15 08:56:36 2015 +0000
Revision:
13:5f08195456a4
HUGE RESTRUCTURING OF THE CODE.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jimmery 13:5f08195456a4 1 // IDEA IS TO HAVE THE ALGORITHM DONE IN HERE.
jimmery 13:5f08195456a4 2 #ifndef MAZE_H
jimmery 13:5f08195456a4 3 #define MAZE_H
jimmery 13:5f08195456a4 4
jimmery 13:5f08195456a4 5 // MAZE DIMENSIONS.
jimmery 13:5f08195456a4 6 const int MAX_ROW = 16;
jimmery 13:5f08195456a4 7 const int MAX_COL = MAX_ROW;
jimmery 13:5f08195456a4 8
jimmery 13:5f08195456a4 9 #endif