Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed TextLCD keypad
Diff: objectives/Objective.cpp
- Revision:
- 27:f29805113454
- Parent:
- 24:f0989eca7469
diff -r 1c7f293ba49c -r f29805113454 objectives/Objective.cpp
--- 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);
}
