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
human.h
- Committer:
- weixitao
- Date:
- 2017-05-01
- Revision:
- 1:83459533ff72
File content as of revision 1:83459533ff72:
#ifndef HUMAN_H
#define HUMAN_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
class human
{
public :
void print_human();
double humanX();
double humanY();
private:
int x;
int y;
};
#endif