AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Screen.cpp Source File

Screen.cpp

00001 #include "Screen.h"
00002 
00003 using namespace AirsoftTimer;
00004 
00005 Screen::Screen(Board* board){
00006     this->board = board;
00007     update_display = true;
00008 }
00009 
00010 void Screen::update(){
00011     update_display = true;
00012 }
00013 
00014 void Screen::show(){
00015     update_display = false;    
00016 }