Program that demonstrates library development and improvement.

Dependencies:   Blinker mbed

Committer:
tbjazic
Date:
Sat Dec 10 12:04:07 2016 +0000
Revision:
0:a8f85fdcc698
Child:
1:671fed642362
Initial commit of the program.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tbjazic 0:a8f85fdcc698 1 #include "mbed.h"
tbjazic 0:a8f85fdcc698 2 #include "Blinker.h"
tbjazic 0:a8f85fdcc698 3
tbjazic 0:a8f85fdcc698 4 int main() {
tbjazic 0:a8f85fdcc698 5 Blinker myBlinker(LED3);
tbjazic 0:a8f85fdcc698 6 myBlinker.blink(10);
tbjazic 0:a8f85fdcc698 7 wait(2);
tbjazic 0:a8f85fdcc698 8 myBlinker.blink(5, 1);
tbjazic 0:a8f85fdcc698 9 }
tbjazic 0:a8f85fdcc698 10