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
Pup/Pup.h
- Committer:
- el18jgb
- Date:
- 2020-05-18
- Revision:
- 13:cfdfe60a2327
- Parent:
- Pup.h@ 7:04a7826ff7e4
- Child:
- 19:33c77517cb88
File content as of revision 13:cfdfe60a2327:
#ifndef PUP_H #define PUP_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Aim.h" #include "Heston.h" /** Power up Class @date april 2020 */ class Pup { public: Pup(); ~Pup(); void init(); void draw(N5110 &lcd, bool state); void position(int x, int y); Vector2D get_pos(); private: int _height; int _width; int _x; int _y; }; #endif