Juraj Babić / Blinker
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Blinker.h Source File

Blinker.h

00001 #include "mbed.h"
00002 
00003 class Blinker {
00004     public:
00005     Blinker(PinName pin);
00006     void blink(int, float);
00007     private:
00008     DigitalOut led;
00009     };