my own library

Dependencies:   mbed

Fork of HelloWorld by Simon Ford

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