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.
flasher.cpp@0:09421f2b914a, 2015-11-25 (annotated)
- Committer:
- SuprithI
- Date:
- Wed Nov 25 13:05:19 2015 +0000
- Revision:
- 0:09421f2b914a
library1
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| SuprithI | 0:09421f2b914a | 1 | #include "Flasher.h" |
| SuprithI | 0:09421f2b914a | 2 | #include "mbed.h" |
| SuprithI | 0:09421f2b914a | 3 | |
| SuprithI | 0:09421f2b914a | 4 | Flasher::Flasher(PinName pin) : _pin(pin) { |
| SuprithI | 0:09421f2b914a | 5 | _pin = 0; |
| SuprithI | 0:09421f2b914a | 6 | } |
| SuprithI | 0:09421f2b914a | 7 | |
| SuprithI | 0:09421f2b914a | 8 | void Flasher::flash(int n) { |
| SuprithI | 0:09421f2b914a | 9 | for(int i=0; i<n*2; i++) { |
| SuprithI | 0:09421f2b914a | 10 | _pin = !_pin; |
| SuprithI | 0:09421f2b914a | 11 | wait(0.2); |
| SuprithI | 0:09421f2b914a | 12 | } |
| SuprithI | 0:09421f2b914a | 13 | } |