You are viewing a single comment's thread from:

RE: My first experience with Arduino programming (LED Blinking program)

in #arduino10 months ago

Yes mam, they are required functions in arduino, otherwise it will show compilation errors.
The code that you put inside void setup() will only run once, and that will be at the beginning of your program, Code within void loop() function repeat consecutively until Arduino is turned off.

Sort:  

Oh nice to know. At least I learned something. Thanks for explaining!