Chetan patil
/
flasher
LED blink
flasher.h
- Committer:
- chetanpatil
- Date:
- 2015-11-24
- Revision:
- 0:02489f35e512
File content as of revision 0:02489f35e512:
#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