stephane givron / Flasher
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Flasher.h Source File

Flasher.h

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