
A project that creates falling asteroids at random positions along the top of the screen for a space ship at the bottom to shoot, using a Nokia N5110 LCD, joystick and pushbuttons
Dependencies: DebounceIn N5110 PowerControl mbed
Diff: main.h
- Revision:
- 2:8d28a2f491eb
- Parent:
- 0:6eba0e66ce01
- Child:
- 3:39c95d65bee5
--- a/main.h Fri May 08 09:39:33 2015 +0000 +++ b/main.h Fri May 08 11:30:43 2015 +0000 @@ -15,6 +15,12 @@ #define DIRECTION_TOLERANCE 0.05 /** +@namespace LocalFileSystem +@brief defines a local filesystem +*/ +LocalFileSystem local("local"); // create local filesystem + +/** @namespace button @brief represents button input pin from joystick */ @@ -341,4 +347,16 @@ */ void PauseDisplay(); +/** +*funtion to read from the local file system created +*used in highscore +*/ +void Read(); + +/** +*funtion to write to the local file system created +*used in highscore +*/ +void Write(); + #endif \ No newline at end of file