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:
- 3:648c9d5001be
- Parent:
- 2:86cef2afa648
- Child:
- 4:aae7f8d4ab78
diff -r 86cef2afa648 -r 648c9d5001be CrossyChicken/CrossyChicken.h --- a/CrossyChicken/CrossyChicken.h Mon Apr 13 17:08:55 2020 +0000 +++ b/CrossyChicken/CrossyChicken.h Mon May 04 03:55:03 2020 +0000 @@ -1,8 +1,11 @@ #ifndef CROSSYCHICKEN_H #define CROSSYCHICKEN_H + #include "mbed.h" #include "N5110.h" #include "Gamepad.h" +#include "Chicken.h" +#include "Car.h" struct Input{ //UP, @@ -20,8 +23,18 @@ void game(); void refresh(); - N5110 lcd; - + + void moveChicken(int xWay, int yWay); + + void moveCar(); + void move(); + + void setup(); + + + + + private: };