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.
plane.h
- Committer:
- Neowless
- Date:
- 2020-05-15
- Revision:
- 1:48b0bf0bcda8
File content as of revision 1:48b0bf0bcda8:
#ifndef PLANE_H
#define PLANE_H
#include "Bitmap.h"
#include "N5110.h"
#include "Gamepad.h"
#include "mbed.h"
#include "FXOS8700CQ.h"
struct xy{
int x;
int y;
};
class plane{
public:
void init();
void update(Gamepad &pad, FXOS8700CQ &device);
void display(N5110 &lcd);
xy getxy();
int getwidth();
int getheight();
private:
int _height;
int _width;
int data[56];
xy _xy;
};
#endif