AirsoftTimer software based on mbed
Dependencies: mbed TextLCD keypad
screens/Screen.h
- Committer:
- sillevl
- Date:
- 2017-02-09
- Revision:
- 27:f29805113454
File content as of revision 27:f29805113454:
#ifndef SCREEN_H
#define SCREEN_H
#include "../board/Board.h"
namespace AirsoftTimer
{
class Screen
{
public:
Screen(Board* board);
void show();
void update();
protected:
Board* board;
int update_display;
};
}
#endif
