Sto 7. Amer Šurković Haris Imamović

Dependencies:   mbed

Committer:
2016US_AmerSurkovic
Date:
Fri Mar 04 13:23:56 2016 +0000
Revision:
0:71400712375b
Sto broj 7; Lab 1, Zadatak 1; Amer ?urkovi?; Haris Imamovi?

Who changed what in which revision?

UserRevisionLine numberNew contents of line
2016US_AmerSurkovic 0:71400712375b 1 #include "mbed.h"
2016US_AmerSurkovic 0:71400712375b 2
2016US_AmerSurkovic 0:71400712375b 3 DigitalOut myled(LED1);
2016US_AmerSurkovic 0:71400712375b 4
2016US_AmerSurkovic 0:71400712375b 5 int main() {
2016US_AmerSurkovic 0:71400712375b 6 while(1) {
2016US_AmerSurkovic 0:71400712375b 7 myled = 1;
2016US_AmerSurkovic 0:71400712375b 8 wait(1);
2016US_AmerSurkovic 0:71400712375b 9 myled = 0;
2016US_AmerSurkovic 0:71400712375b 10 wait(1);
2016US_AmerSurkovic 0:71400712375b 11 }
2016US_AmerSurkovic 0:71400712375b 12 }