<this is my test library>

Fork of Flasher by yuki sato

Flasher.h

Committer:
satoyuki1111
Date:
2016-06-30
Revision:
0:3e6b94efd0f5

File content as of revision 0:3e6b94efd0f5:

#ifndef MBED_FLASHER_H
#define MBED_FLASHER_H

#include "mbed.h"

class Flasher
{
    private:
        BusOut Right;
    public:
        Flasher(PinName LED1_,PinName LED2_,PinName LED3_,PinName LED4_);
        void flash(int p);
};

#endif