0 votes
by (120 points)
What is void loop in Arduino?

1 Answer

0 votes
by (1.4k points)
Loop: void loop() { }

This is where the bulk of your Arduino sketch is executed. The program starts directly after the opening curly bracket ( } ), runs until it sees the closing curly bracket ( } ), and jumps back up to the first line in loop() and starts all over.

Related questions

0 votes
1 answer
asked Jul 1, 2021 by arduino (3.7k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Mar 3, 2021 by whileloop (160 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Jun 13, 2021 by current (740 points)
0 votes
1 answer
asked Aug 20, 2021 by adafruit (360 points)
...