tim008 tim008 / Mbed 2 deprecated LV1_Grupa4_Tim008_Zadatak5

Dependencies:   mbed

Fork of LV1_Grupa4_Tim008_Zadatak4 by tim008 tim008

main.cpp

Committer:
tim008
Date:
2014-03-03
Revision:
2:c9ca07dab9f5
Parent:
1:b6bb5d47580c
Child:
3:bc1ee63e9c38

File content as of revision 2:c9ca07dab9f5:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(1);
        myled = 0;
        wait(1);
    }
}