AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
27:f29805113454
Parent:
24:f0989eca7469
--- a/objectives/Objective.cpp	Mon May 25 20:53:28 2015 +0000
+++ b/objectives/Objective.cpp	Thu Feb 09 12:28:56 2017 +0000
@@ -23,10 +23,12 @@
 void Objective::start(){
     while(status != COMPLETED){
         run();
+        leds->on(Leds::LEFT);
     }
 }
 
 void Objective::complete(){
     status = COMPLETED;
+    leds->off(Leds::RIGHT);
 }