suprith1 Ijantkar / Mbed 2 deprecated flasher

Dependencies:   mbed

Committer:
SuprithI
Date:
Wed Nov 25 13:05:19 2015 +0000
Revision:
0:09421f2b914a
library1

Who changed what in which revision?

UserRevisionLine numberNew 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 }