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: CrossyChicken/CrossyChicken.h
- Revision:
- 2:86cef2afa648
- Child:
- 3:648c9d5001be
diff -r 6afa6a6a8131 -r 86cef2afa648 CrossyChicken/CrossyChicken.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CrossyChicken/CrossyChicken.h Mon Apr 13 17:08:55 2020 +0000 @@ -0,0 +1,31 @@ +#ifndef CROSSYCHICKEN_H +#define CROSSYCHICKEN_H +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +struct Input{ + //UP, + //DOWN, + //LEFT, + //RIGHT +}; + +class CrossyChicken { + public: + void start(); + void input(); + void process_input(); + void clear(); + + void game(); + void refresh(); + N5110 lcd; + +}; + + +#endif + + +