AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Airsofttimer.h Source File

Airsofttimer.h

00001 
00002 
00003 #ifndef AIRSOFTTIMER_H
00004 #define AIRSOFTTIMER_H
00005 
00006 #include "mbed.h"
00007 #include "board/Board.h"
00008 #include "games/GameFactory.h"
00009 
00010 class Airsofttimer
00011 {
00012     static const char* LOGO[];
00013     
00014     public: 
00015     Airsofttimer(Pinouts pinouts);
00016     
00017     private:
00018     Board* board;
00019     
00020     void init();  
00021     void start();
00022     int select_game(); 
00023 
00024 };
00025 
00026 #endif