Andrija Ovas / Flasher
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Flasher.h Source File

Flasher.h

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