22-11-2022, 23:07
Witam
Jestem bardzo początkujący w Arduino.
Proszę o wytłumaczenie dlaczego po wpisaniu
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(5, OUTPUT);
pinMode(4, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(5, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(5, LOW); // turn the LED off by making the voltage LOW
delay(1000);
digitalWrite(5, HIGH); /
delay(1000);
while(1){}
// wait for a second
}
dioda cały czas mruga?
Przecież po jej zapaleniu digitalWrite(5, HIGH) jest nieskończona pętla.
Dzięki za naprowadzenie.
Henryk
Jestem bardzo początkujący w Arduino.
Proszę o wytłumaczenie dlaczego po wpisaniu
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(5, OUTPUT);
pinMode(4, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(5, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(5, LOW); // turn the LED off by making the voltage LOW
delay(1000);
digitalWrite(5, HIGH); /
delay(1000);
while(1){}
// wait for a second
}
dioda cały czas mruga?
Przecież po jej zapaleniu digitalWrite(5, HIGH) jest nieskończona pętla.
Dzięki za naprowadzenie.
Henryk