nggawe library dewe iku apik

Fork of flash by Ahmad riski

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers flash.h Source File

flash.h

00001 #ifndef MBED_FLASH_H
00002 #define MBED_FLASH_H
00003  
00004 #include "mbed.h"
00005  
00006 class Flasher {
00007 public:
00008     Flasher(PinName pin);
00009     void flash(int n);
00010   
00011 private:  
00012     DigitalOut _pin;
00013 };
00014  
00015 #endif