proba
Blinker.h@0:a293484a4f43, 2016-12-15 (annotated)
- Committer:
- mcica
- Date:
- Thu Dec 15 12:21:18 2016 +0000
- Revision:
- 0:a293484a4f43
proba
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mcica | 0:a293484a4f43 | 1 | #include "mbed.h" |
mcica | 0:a293484a4f43 | 2 | include "Blinker.h" |
mcica | 0:a293484a4f43 | 3 | |
mcica | 0:a293484a4f43 | 4 | class Blinker { |
mcica | 0:a293484a4f43 | 5 | public: |
mcica | 0:a293484a4f43 | 6 | Blinker(PinName pin); |
mcica | 0:a293484a4f43 | 7 | void blink(int,float); |
mcica | 0:a293484a4f43 | 8 | private: |
mcica | 0:a293484a4f43 | 9 | DigitalOut led; |
mcica | 0:a293484a4f43 | 10 | } |