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 #ifndef MBED_FLASHER_H
SuprithI 0:09421f2b914a 2 #define MBED_FLASHER_H
SuprithI 0:09421f2b914a 3
SuprithI 0:09421f2b914a 4 #include "mbed.h"
SuprithI 0:09421f2b914a 5
SuprithI 0:09421f2b914a 6 class Flasher {
SuprithI 0:09421f2b914a 7 public:
SuprithI 0:09421f2b914a 8 Flasher(PinName pin);
SuprithI 0:09421f2b914a 9 void flash(int n);
SuprithI 0:09421f2b914a 10
SuprithI 0:09421f2b914a 11 private:
SuprithI 0:09421f2b914a 12 DigitalOut _pin;
SuprithI 0:09421f2b914a 13 };
SuprithI 0:09421f2b914a 14
SuprithI 0:09421f2b914a 15 #endif