Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: MazeEngine.h
- Revision:
- 3:4b82cb2e0618
- Parent:
- 2:cbce5d35e7d6
- Child:
- 4:93fd2f3bd0de
--- a/MazeEngine.h Wed Apr 19 20:16:56 2017 +0000
+++ b/MazeEngine.h Fri Apr 21 12:47:52 2017 +0000
@@ -38,10 +38,14 @@
void readAccelerometer(FXOS8700CQ &device);
void update(N5110 &lcd);
void draw(N5110 &lcd);
+
void checkWallCollision(N5110 &lcd);
+ bool checkGoal(N5110 &lcd);
void getMazeArray(N5110 &lcd);
+ bool _goal;
+
private:
Maze _maze;