
AirsoftTimer software based on mbed
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