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.
Dependencies: mbed
Diff: Food/Food.h
- Revision:
- 2:ea90cec2489a
- Parent:
- 1:c3fdbc4b1293
- Child:
- 3:50f01159c61d
--- a/Food/Food.h Wed Feb 28 14:58:21 2018 +0000 +++ b/Food/Food.h Wed Feb 28 15:20:14 2018 +0000 @@ -1,5 +1,27 @@ -/** My Sample Class +#ifndef FOOD_H +#define FOOD_H + +#include "mbed.h" +#include "N5110.h" +#include "GamePad.h" +#include "FXOS8700CQ.h" + +/** Food Class * @brief Describes the methods and functions for the food * @author Joshua R. Marshall * @date Feb, 2018 -* \ No newline at end of file +*/ + +class Food +{ + +public: + Food(); // constructor + ~Food(); // destructor + + +private: + + +}; +#endif \ No newline at end of file