asha pawar
/
HelloWorld
my own library
Fork of HelloWorld by
Flasher.h
- Committer:
- ashapawar
- Date:
- 2015-11-25
- Revision:
- 2:d42b0e3fe08a
File content as of revision 2:d42b0e3fe08a:
#ifndef MBED_FLASHER_H #define MBED_FLASHER_H #include "mbed.h" class Flasher { public: Flasher(PinName pin); void flash(int n); private: DigitalOut _pin; }; #endif