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
Head/Head.h
- Committer:
- el18lg
- Date:
- 2020-05-27
- Revision:
- 3:beb0cc405b1e
- Child:
- 4:748b3e0062f6
File content as of revision 3:beb0cc405b1e:
#ifndef HEAD_H #define HEAD_H #include "mbed.h" #include "Gamepad.h" #include "N5110.h" class Head { public: Head(); ~Head(); void init(int _length, int _speed); void draw(N5110 &lcd); void update(); void update(Direction d); Vector2D get_pos(); private: Gamepad pad; int _x; int _y; int _length; int _speed; }; #endif