Potprogrami Sa Funkcijama - Arduino 01

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

//programi sa funkcijama za arduino

//program 01
int led=13;
int stanje;

void setup (){


pinMode(led, OUTPUT);
stanje=0;
}

void loop(){
stanje=!stanje;
digitalWrite(led, stanje);
delay(1000);
}

You might also like