
This is the initial version of my 7-segment hardware test and software demo project. This project will also be the starting point for the EE- 2905 Week 10 lab practical.
Revision 29:0b58d21e87d6, committed 2017-03-05
- Comitter:
- mbed_official
- Date:
- Sun Mar 05 20:30:02 2017 +0000
- Parent:
- 28:239239e33d92
- Child:
- 30:f5b42453b3f9
- Commit message:
- Merge pull request #48 from janjongboom/patch-1
Remove the note about wait
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-blinky
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Feb 28 13:30:04 2017 +0000 +++ b/main.cpp Sun Mar 05 20:30:02 2017 +0000 @@ -3,7 +3,6 @@ DigitalOut led1(LED1); // main() runs in its own thread in the OS -// (note the calls to wait below for delays) int main() { while (true) { led1 = !led1;