1st mbed library built - mbed Flasher

Flasher.h

Committer:
tothbuiaelliott
Date:
2011-07-13
Revision:
0:446c73b5555a

File content as of revision 0:446c73b5555a:

#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