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 ll16j23s_test_docs
Food/Food.h
- Committer:
- JoeShotton
- Date:
- 2020-05-23
- Revision:
- 5:06fa7674622a
- Parent:
- 4:ea3fa51c4386
- Child:
- 7:dd84e0fab346
File content as of revision 5:06fa7674622a:
#ifndef FOOD_H #define FOOD_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "FXOS8700CQ.h" class Food { public: Food(); ~Food(); void init(FXOS8700CQ &mag); void rand_pos(Gamepad &pad, int &_x, int &_y); void draw(N5110 &lcd, int &_frame); void snake_food_collision(); void do_food(N5110 &lcd); int _x; int _y; private: int _frame; float _values; float _seed; }; #endif