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 TextLCD keypad
Airsofttimer.h
- Committer:
- sillevl
- Date:
- 2015-05-23
- Revision:
- 13:ece97a1108cc
- Parent:
- 9:b587bae22691
File content as of revision 13:ece97a1108cc:
#ifndef AIRSOFTTIMER_H
#define AIRSOFTTIMER_H
#include "mbed.h"
#include "board/Board.h"
#include "games/GameFactory.h"
class Airsofttimer
{
static const char* LOGO[];
public:
Airsofttimer(Pinouts pinouts);
private:
Board* board;
void init();
void start();
int select_game();
};
#endif
